mysql 3.2版本下 解决嵌套查询的方法
例如实现select * from (select a from table)
怎么写 如果是4.1以上的版本就之际支持了,可现在。。。
——解决方案——————–
create temporary table tmp select * from 你的表 where ….
mysql 3.2版本下 解决嵌套查询的方法
例如实现select * from (select a from table)
怎么写 如果是4.1以上的版本就之际支持了,可现在。。。
——解决方案——————–
create temporary table tmp select * from 你的表 where ….