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

php如何查询某个表一共多少条记录?,第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。

php使用mysql查询数据库已经有多少条数据使用sql的count函数实现。

示例代码如下:

<?php

//数据库连接

$conn=mysql_connect("localhost","root","root")

if(!$conn){

die("对不起,数据库连接失败! ").mysql_errno()

}

//选择数据库

mysql_select_db("testdb")

//sql语句

$sql="SELECT COUNT(*) AS count FROM user"

//执行sql

$query=mysql_query($sql,$conn)

//对结果进行判断

if(mysql_num_rows( $query)){

$rs=mysql_fetch_array($query)

//统计结果

$count=$rs[0]

}else{

$count=0

}

echo $count

?>

返回的$count就是当前数据库的记录条数。

其实我感觉你这个逻辑没问题,代码有点问题,我是这么认为的,代码应该是这样

$idzhi = rand(0,表中数据条数)

$data = $data['id']// 我不明白你这里是什么意思

$arr = $m->where($data >= $idzhi)->limit(8) ->select()

不过我总感觉上面的有问题

$idzhi = rand(0,表中数据条数)

$arr = $m->where("id >= $idzhi")->limit(8) ->select()

不对的话就试试这个,我个人觉得这样是对的,不明白你那个$data['id']是干嘛用的


欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/sjk/6930819.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2023-03-30
下一篇 2023-03-30

发表评论

登录后才能评论

评论列表(0条)

保存