Hi I would like to update my table but its giving me an error.
ERROR 1064 (42000): You have an error in your SQL syntax;
This is my script
UPDATE table1
SET last_name = table3.lastname,
first_name = table3.firstname,
FROM table1
INNER JOIN table2
ON table2.entity_id = table1.entity_id
INNER JOIN table3
ON table3.biometric_id = table2.biometric_id;