php如何查询某个表一共多少条记录?

如题请教
2024-12-13 06:35:21
推荐回答(2个)
回答1:

需要准备的材料分别是:电脑、php编辑器、浏览器。

1、首先,打开php编辑器,新建php文件,例如:index.php。

2、在index.php中,输入代码:

$conn = new mysqli('10.5.15.177', 'root', '', 'test');

$sql = "select * from stu";

$r = $conn->query($sql);

print_r($r->num_rows);


3、浏览器运行index.php页面,此时打印出了stu表的记录数是5。

回答2:

2种方法

一个是用sql语句统计

select count(*) as AllNum from 表名称

第二种是使用php的mysql函数 mysql_num_rows()