sql数据个数统计

sql表1中有两列数据:
1列 2列
5 6
7 8
6 5
6 7
7 5
如果,我想要统计这两列数据数据中5的个数,怎么写语言啊~

第1个回答  2012-07-18
select count(列) from 表 top 5
相似回答