MySQL Workbench 中的 MySQL WITH ROLLUP 查询语法错误?
知道为什么以下查询语法错误:
SELECT year, sum(profit)
FROM BASEDATA b
group by year WITH rollup
错误代码:1064 您的 SQL 语法有错误;检查与您的 MySQL 服务器版本相对应的手册,了解使用近...
MYSQL 版本 5.0.77-community-log 的正确语法
Any idea why the following query syntax is wrong:
SELECT year, sum(profit)
FROM BASEDATA b
group by year WITH rollup
Error Code: 1064
You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near.....
MYSQL Version 5.0.77-community-log
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
这似乎是 MySQL Workbench 中的一个错误...查询在 MySQL 查询浏览器下运行良好。
It appears to be a bug in MySQL Workbench...the query runs fine under MySQL Query Browser.
同样的错误,但我发现了一个讨论:
mysql WITH ROLLUP
如果使用 ctrl+enter 执行查询,则会出现错误,但是如果你用 ctrl+alt+enter 执行
那么查询就ok了!
希望修复这个bug...
Same error, but i found a discussion :
mysql WITH ROLLUP
if execute the query with ctrl+enter you get error, but if you execute with ctrl+alt+enter
then the query is ok!
Hope the fix this bug...