计算记录条数的方法有多种:tSelect count(*) from tablename; tSelect count(1) from tablename; tSelect max(rownum) from tablename; 一般来说,在没有索引的情况下,第一种方法是最快的。如果有索引列,使用索引列当然更快。