我有两个名为question_answersquestion_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

谢谢您。

10-02 16:07