统计一张表中条目的个通常的SQL语句是:
select count(*) from tableName; #or select count(1) from tableName; #or 统计一个列项,如ID select count(ID)