I\'m in the process of normalizing a few tables and I\'ve added a surrogate primary key to a table called Exams which holds exam titles.
Exams
Previously, the
Why not:
UPDATE tblExamQuestion INNER JOIN tblExam ON tblExam.ExamName = tblExamQuestion.ExamName SET tblExamQuestion.ExamID = tblExam.ExamID