计算表格行数
2021-11-20 00:00:00
mysql
获取表中记录数的 MySQL 命令是什么?
What is the MySQL command to retrieve the count of records in a table?
推荐答案
SELECT COUNT(*) FROM fooTable;
将计算表中的行数.
请参阅参考手册.
相关文章
获取表中记录数的 MySQL 命令是什么?
What is the MySQL command to retrieve the count of records in a table?
SELECT COUNT(*) FROM fooTable;
将计算表中的行数.
请参阅参考手册.
相关文章