发布网友 发布时间:2022-04-23 06:59
我来回答
共1个回答
热心网友 时间:2022-04-08 02:24
用count函数就可以查看。比如表名叫test。要查询表中一共有多少条记录select count(*) from test;
如果按条件查询的话,就正常使用where条件即可select count(*) from test where id=1;