MySQL Workbench 中的 MySQL WITH ROLLUP 查询语法错误?

发布于 2024-09-26 00:08:05 字数 224 浏览 7 评论 0原文

知道为什么以下查询语法错误:

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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

栩栩如生 2024-10-03 00:08:05

这似乎是 MySQL Workbench 中的一个错误...查询在 MySQL 查询浏览器下运行良好。

It appears to be a bug in MySQL Workbench...the query runs fine under MySQL Query Browser.

初吻给了烟 2024-10-03 00:08:05

同样的错误,但我发现了一个讨论:
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...

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文