我有两个名为question_answers
和question_attempts
的表。question_answers
每个问题都有列名为answer
的选项
以及question_attempts
已尝试所有列名为responsesummary
的答案。
现在我想得到匹配记录的计数。
“问答”
“提问尝试”
最佳答案
这些sql对于获取两个表中匹配记录的计数非常有用。
select count(*) from question_answers as table_1 join question_attempts
on table_1.uniquecolumn_table1 = table_2.uniquecolumn_table2
谢谢您。