Navicat MySQL 中的 NTILE 函数错误



我正在尝试使用 NTILE 函数在使用 Navicat for MySQL 的数据集中创建十分位数。我的查询是:

select NTILE(10) over (order by 'amount') decile, *
from dataframe d
order by 'amount';

我收到错误

[Err] 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 '(order by.....

任何人都可以帮助找出我的查询有什么问题吗?

提前感谢!

NTILE就是所谓的窗口函数(MS SQL Info)。

MySQL没有窗口函数:https://dba.stackexchange.com/questions/40130/mysql-and-window-functions

相关内容

  • 没有找到相关文章

最新更新