php中使用临时表查询数据的一个例子_PHP教程
程序员文章站
2024-01-16 11:43:58
...
复制代码 代码如下:
$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) ;
推荐阅读
-
在SQL2000查询中使用XDR的例子_PHP教程
-
请问怎么获取PHP页面中靠查询数据库后输出一个记录的表格中记录的状态
-
php mysql 一个查询优化的简单例子_PHP教程
-
使用PHP导出Redis数据到另一个Redis中的代码
-
PHP5中使用PDO连接数据库的方法_PHP教程
-
使用PHP导出Redis数据到另一个Redis中的代码_PHP
-
PHP 存取 MySQL 数据库的一个例子_PHP教程
-
PHP使用mysql_fetch_row查询获得数据行列表的方法,phpmysql_fetch_row_PHP教程
-
PHP使用mysql_fetch_object从查询结果中获取对象集的方法_PHP教程
-
php+mysqli使用预处理技术进行数据库查询的方法,mysqli预处理_PHP教程