php中使用临时表查询数据的一个例子
程序员文章站
2022-09-07 17:53:36
复制代码 代码如下:$sql3="create temporary table atmp_table(uid int(11),dnum int(20) not null)"...
复制代码 代码如下:
$sql3="create temporary table atmp_table(uid int(11),dnum int(20) not null)";
mysql_query($sql3);
$sql3="insert into atmp_table(uid,dnum) select uid,count(soid) as dnum
from `cy_score2`
where (nei='下载' or nei='下载试题')
group by uid having dnum>150
order by dnum desc limit 10";
mysql_query($sql3);
$sql3="select a.uid,count(b.tid) as unum from atmp_table a left join cy_test b on a.uid=b.uid
group by b.uid
order by a.dnum desc,unum asc limit 5";
$query4=mysql_query($sql3);
$rs=mysql_fetch_array($query4) ;
推荐阅读
-
使用PHP导出Redis数据到另一个Redis中的代码
-
php中使用临时表查询数据的一个例子
-
MySQL 查询一个表的 一年中每个月的数据的均数量
-
DM数据库表中的CLOB字段,使用ajax查询并显示结果时无法获取该字段值
-
使用php读取TXT文件的数据(单词、音标和翻译)到另一个TXT文件中,出现乱码,是什么原因?
-
求教一个基础的mysql多表联合查询的有关问题:怎么限制某张表中只查一条数据
-
php使用sqlsrv查询远路sql2008数据表中字段名为中文的字段取不到值
-
mysql - PHP 数据库,一个表中有多个用户的多个记录,如何获取这个表中的每个用户的最值
-
mysql - PHP 数据库,一个表中有多个用户的多个记录,如何获取这个表中的每个用户的最值
-
使用PHP导出Redis数据到另一个Redis中的代码_PHP教程