mysql 在该位置无效,需要 eof

发布于 2025-01-15 21:35:24 字数 221 浏览 2 评论 0原文

SELECT ref,
       Sum(transactions.amount)
         OVER(
           ORDER BY id)
FROM   transactions  

localhost mysql phpmyadmin 运行代码没有任何问题。但是,当上传到heroku ClearDB时,显示“mysql在此位置无效,期待eof”错误

SELECT ref,
       Sum(transactions.amount)
         OVER(
           ORDER BY id)
FROM   transactions  

localhost mysql phpmyadmin runs the code with no problems. However when uploading to heroku ClearDB "mysql is not valid at this position expecting eof" error shows

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

秉烛思 2025-01-22 21:35:24

MySQL 不支持窗口函数 (例如 SUM OVER()) 直到版本8:

MySQL 现在支持窗口函数,对于查询中的每一行,使用与该行相关的行执行计算。其中包括诸如 RANK()LAG()NTILE() 等函数。此外,一些现有的聚合函数现在可以用作窗口函数(例如,SUM()AVG())。

但是 ClearDB 默认为版本 5.6 并且不不提供比 5.7 版本更新的任何内容

不过,还有其他提供 MySQL 的 Heroku 插件:

我建议您切换到 JawsDB for MySQL。配置附加组件,将数据复制从 ClearDB 到 JawsDB,并将您的应用程序指向 JawsDB。一旦确定一切正常,您就可以取消配置 ClearDB 数据库。

MySQL didn't support window functions (e.g. SUM OVER()) until version 8:

MySQL now supports window functions that, for each row from a query, perform a calculation using rows related to that row. These include functions such as RANK(), LAG(), and NTILE(). In addition, several existing aggregate functions now can be used as window functions (for example, SUM() and AVG()).

But ClearDB defaults to version 5.6 and doesn't offer anything newer than version 5.7.

There are other Heroku addons that provide MySQL, though:

I suggest you switch to JawsDB for MySQL. Provision the add-on, copy your data from ClearDB to JawsDB, and point your application to JawsDB. Once you're sure everything is working you can de-provision the ClearDB database.

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