如何找出查询返回的记录数?
例如,我有一个名为Items
的表,每个项目都有一个子类型ID。如何找出属于子类型1的项目的行数?
答案 0 :(得分:3)
您是否阅读了SQL简介?
select count(*)
from items
where subtype = 1
:)
答案 1 :(得分:0)
您可以使用以下查询。
select count(*) from items where item_subtype_id=1;
答案 2 :(得分:0)
select count(*) from Items where subtype_id = 1