alibaba / druid

阿里云计算平台DataWorks(https://help.aliyun.com/document_detail/137663.html) 团队出品,为监控而生的数据库连接池
https://github.com/alibaba/druid/wiki
Apache License 2.0
27.98k stars 8.59k forks source link

com.alibaba.druid.sql.parser.ParserException: syntax error, error in :' limit ?,?', expect LIMIT, actual LIMIT pos 269, line 6, column 43, token LIMIT #2013

Open youarepppp opened 7 years ago

youarepppp commented 7 years ago

(select id as contentid,contour,title,CONCAT(date_format(validstarttime,'%Y.%m.%d'),"-",date_format(validendtime,'%Y.%m.%d')) as validtime from tbl_activity_info order by istop desc, updatetime desc) limit ?,? 在执行以上sql时出现这个异常,但是执行结果是出来了 在将sql改成以下情况就不报错了 select id as contentid,contour,title,CONCAT(date_format(validstarttime,'%Y.%m.%d'),"-",date_format(validendtime,'%Y.%m.%d')) as validtime from tbl_activity_info order by istop desc, updatetime desc limit ?,?

thousmile commented 7 years ago

大哥啊!我也出这个的问题了! sql 语句我用 jdbc执行,用Navicat Premium 执行都没问题。就是报错,说是语法错误!但是结果出来了。而且是第一次执行出错,第二次执行就不报错了。