I'm trying to update a field based on a field of another table. Here is the code:
UPDATE h
SET h.strength = c.strength
FROM hesters AS h
INNER JOIN campers AS c
ON h.camper_id = c.id
Getting "#1064 - You have an error in your SQL syntax;"
I'm basing my code off this answer here.
Anyone spot the syntax error?