错误码: 1630FUNCTION count does not exist. Check the'Function Name Parsing and Resolution' section in the Reference Manual解决方案:如sum() count() avg这些函数里面是这样子写的sum () sum和()分开了,不是挨着写的,所以报这个错
oracle11gR2没报这个错误,mysql5.7报这个错了,mysql将count当成函数了
oracle的rowNum从1开始,mysql分页limit从0开始;
oracle11g对表名大小写不敏感,mysql5.7在linux上默认对表名大小写敏感,对字段大小写不敏感;
oracle的group by分组条件和查询字段必须一致,mysql不需要
oracle和mysql模糊查询通用:concat(concat('%',#{NAME,jdbcType=VARCHAR}),'%')
oracle使用varchar2(4000),mysql对该字段如果作为index时候字段长度varchar不能超过255,否则变为text就不可以作为index
oracle和mysql的存储过程和函数,视图写法不一致