发布网友 发布时间:2022-05-02 04:21
共2个回答
热心网友 时间:2022-05-03 04:15
select count(*) from acc_exchange where (工商银行所在列名)='工商银行';热心网友 时间:2022-05-03 05:33
可以通过district来取出字段,之后通过count计算总数量。
sql:select count(district id) from tablename;
如果id字段没有空值的话,可以通过count统计字段的总数量(字段内容可能重复)。
sql:select count(id) from tablename;