我来回答
select distinct A from C where B<>0
select @@rowcount
-- 系统函数 @@rowcount 表示上一句sql的行数。
select count(A), A from C where B<>0
count是一个聚合函数,用来统计查询出来的结果条数的总数,
select
count(主键列名);增加count主键可以查出总共多少行。
select count(distinct A) from C where B<>0
select count(A) from C where b<>0 group by A