I am uploading two files from Excel to a JSP to save it in MySQL the first file with its columns:
|------------------|
| Archivos_nombres |
|------------------|
| identificación |
| nombre_j |
| nombre_n |
|------------------|
Second file:
|------------------|
| Empleado |
|------------------|
| identificación_J |
| nombre_j |
| otros campos mas |
|------------------|
What I need is that when I upload the file Employee of Excel to save it in Mysql , I need to make a comparison of these two files by means of the field nombre_j
for if the names are equal take the data that is saved in identification to the field identificacion_J
in the other table, how can you do this thank you very much