用count函数就可以查看。比如表名叫test。要查询表中一共有多少条记录select count(*) from test;如果按条件查询的话,就正常使用where条件即可select count(*) from test where id=1;