最近工作中需要用到Mysql,碰到一些问题,PS 我用的5.1
1 Mysql创建view的时候不支持里面有嵌套查询。会报这个错误 mysql #1349 - View's SELECT contains a subquery in the FROM clause 错误,所以建立查询的时候请尽量避免
select *** from (select * from ) as B 之类的格式。个人觉得这个bug太扯了。
2 Mysql没有 全连接,如果需要弄全连接的话只能先左连接再右连接合起来。
3 Mysql的临时表不支持自连接。会报类似 ERROR 1137: Can't reopen table: 'temp_table' 这种错误,即使多个别名也不行。
4 Mysql中可以将查询结果作为临时表。语法类似:
create temporary table tmp_table select * from table_name
如果需要创建临时表可以使用:
create temporary table tmp_table(******)