码迷,mamicode.com
首页 > 数据库 > 详细

zdaas 对mysql 类型的 sql 有这样的限制

时间:2016-04-07 13:33:41      阅读:346      评论:0      收藏:0      [点我收藏+]

标签:

 2.1. 暂不支持的SQL语句
1、不支持select *,如select *from a,b
2、不支持不带表别名的字段,所有表和字段必须有别名。
正确写法:select  t.id,o.id from customer t ,order o where t.customer_id=o.customer_id;
错误写法:select  id,o.id from customer t ,order o where t.customer_id=o.customer_id;
3、不支持case  when语句
4、不支持条件两边都是常量,如 where 1=1
5、不支持having中条件中带in,!=,如 having t.customer_id IN(1,2,3)
6、不支持越层的嵌套子查询,如下面的语句select c.id from customer c where exists
   (select 1 from order o  where o.order_id in(select  oo.order_id from order oo where oo.customer_id = c.customer_id)),条件oo.customer_id = c.customer_id属于越层关联
7、不支持带or、括号的语句
8、不支持函数内部的字段跨库,如
select t.customer_id,CONCAT(s.customer_id,t.customer_id)  from customer t ,customer_order s

zdaas 对mysql 类型的 sql 有这样的限制

标签:

原文地址:http://www.cnblogs.com/miaolq/p/5363063.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!