我有两个名为question_answers
和question_attempts
的表。
question_answers
包含每个问题的列名answer
的选项
question_attempts
所有尝试的答案都是列名responsesummary
。
现在我想得到匹配记录的数量。
" question_answers" " question_attempts"
答案 0 :(得分:2)
这些SQL对于获取两个表中匹配记录的数量非常有用。
select count(*) from question_answers as table_1 join question_attempts
on table_1.uniquecolumn_table1 = table_2.uniquecolumn_table2
谢谢。