How to create a correlated update subquery in MS-Access?

前端 未结 1 1428
梦谈多话
梦谈多话 2020-12-20 09:53

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.

Previously, the

相关标签:
1条回答
  • 2020-12-20 10:04

    Why not:

    UPDATE tblExamQuestion
    INNER JOIN tblExam 
    ON tblExam.ExamName = tblExamQuestion.ExamName
    SET tblExamQuestion.ExamID = tblExam.ExamID 
    
    0 讨论(0)
提交回复
热议问题