mysql 查询数据库多少条数据

2024-11-08 09:01:11
有1个网友回答
网友(1):

用count函数就可以查看。
比如表名叫test。
要查询表中一共有多少条记录
select count(*) from test;

如果按条件查询的话,就正常使用where条件即可

select count(*) from test where id=1;