Can you help?
I would to update data on my MYSQL database using a text file upload.
In access it is possible to run an update query on a database that will match rows in one table with rows in another table using each tables primary key. Is it possible to do this in MYSQL?
Let me give you an example:
I have a table with 2 columns - of data. 'Primary Key' and 'score'.
I would like to update the score column using a text file that contains the 'primary key' and a new 'score'.
Obviously I need to match the primary key in the MYSQL DB with the primary key on the text file other wise the wrong score will go to the wrong primary key.
I understand that this may be a 1,2,3 stage procress, but is it possible????
Thanks in advance
Ryan