I need to replace more than 20 000 names with new names i created given the CodeID.
For example: I must update all rows that contain "dog" (which has a CodeID of 1) with "cat", and update all rows that contain "horse" (which has a CodeID of 2) with "bird", etc.
1st SQL statement: UPDATE animalTable SET cDescription
= "cat" WHERE CodeID
= 1
2nd SQL statement: UPDATE animalTable SET cDescription
= "bird" WHERE CodeID
= 2
These statements work, but i need a faster way to do this because i have over 20 000 names.
Thank you in advance.