php如何查询某个表一共多少条记录?
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了php如何查询某个表一共多少条记录?相关的知识,希望对你有一定的参考价值。
如题请教
需要准备的材料分别是:电脑、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。
参考技术A2种方法
一个是用sql语句统计
select count(*) as AllNum from 表名称第二种是使用php的mysql函数 mysql_num_rows()
追问但怎么跟PHP配合起来?我弄成变量
$query="select count(*) form orders";
$a=mysqli_query($conn,$query);
总是输不出来
第一种方法
$Query = 'Select count(*) as AllNum from orders';$a = mysqli_query( $conn, $Query );
$b = mysqli_fetch_assoc( $a );
echo $b['AllNum']; //条数
第二种方法:
$Query = 'select * from orders';$a = mysqli_query( $conn, $Query);
echo mysqli_num_rows( $a ); //条数
第三种方法:
//这种方法要修改数据库连接方式$conn = new mysqli('localhost', 'root', '123456', 'dbname');
$a = $conn -> query('select * from orders');
echo $a -> num_rows; //条数
建议先去熟悉一下php的常用函数的作用和用法, 以及Sql数据库命令的基础知识!
追问那请问如果第一种方法要查找表中某一个数据全部相同的共多少个,怎么写?
追答某一个数据的话, 那就是sql中加where子语句
建议去学习一下Sql语言
laravel 怎么得到一张表一共多少条数据
参考技术A $columns = Schema::getColumnListing('users');dd($columns);
注意 Namespace
use Illuminate\Support\Facades\Schema; 参考技术B $total = $this->count();
dd($total)
以上是关于php如何查询某个表一共多少条记录?的主要内容,如果未能解决你的问题,请参考以下文章