欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  后端开发

很好用的统计SQL语句

程序员文章站 2022-05-26 11:06:01
...
统计的SQL语句正则.




  1. $temp = explode("limit",$this->sql);
  2. $countsql = preg_replace("/select (.*?) from(.*?)/i",'select count(*) from\2 ',$temp[0]);
复制代码