发布网友 发布时间:2022-04-07 23:20
共3个回答
热心网友 时间:2022-04-08 00:49
我觉得你可以这样。你可以在相关表中添加一个字段,比如limit,当然这个limit可以在配置文件中自由设置。然后可以这样 select count(id) as count,limit from tablename。热心网友 时间:2022-04-08 02:07
select *,(select count(*) from `table` where XXX ) as count from `table` where XXX limit A,B,
热心网友 时间:2022-04-08 03:42
mysql_num_rows($sql)=select count(*) from `table` where XXX ;可以获得查询条数