获取匹配记录的数量

时间:2015-06-18 06:49:35

标签: php mysql

我有两个名为question_answersquestion_attempts的表。

question_answers包含每个问题的列名answer的选项 question_attempts所有尝试的答案都是列名responsesummary。 现在我想得到匹配记录的数量。

" question_answers" enter image description here " question_attempts" enter image description here

1 个答案:

答案 0 :(得分:2)

这些SQL对于获取两个表中匹配记录的数量非常有用。

select count(*) from question_answers as  table_1 join question_attempts 
on table_1.uniquecolumn_table1 = table_2.uniquecolumn_table2

谢谢。