当前位置: 代码迷 >> 综合 >> 错误码: 1630 FUNCTION count does not exist. Check the ‘Function Name Parsing and Resolution‘ section in
  详细解决方案

错误码: 1630 FUNCTION count does not exist. Check the ‘Function Name Parsing and Resolution‘ section in

热度:35   发布时间:2023-09-19 21:54:04.0

错误码: 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的存储过程和函数,视图写法不一致

  相关解决方案