簡體   English   中英

MySQL:運行窗口查詢時出錯

[英]MySQL: Error when running a Windowing query

我正在嘗試執行 WINDOW 查詢,如下所示:

SELECT 
DATE(ts),
oi, 
avg(oi) OVER(PARTITION BY DATE(ts) )  
FROM bybit_oi_1d_BTCUSD

它給出了以下錯誤:

#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 '(PARTITION BY DATE(ts) )  
FROM bybit_oi_1d_BTCUSD LIMIT 0, 25' at line 4

在 MySQL 8+ 或 MariaDB 10.2 之前沒有 Window 功能

暫無
暫無

聲明:本站的技術帖子網頁,遵循CC BY-SA 4.0協議,如果您需要轉載,請注明本站網址或者原文地址。任何問題請咨詢:yoyou2525@163.com.

 
粵ICP備18138465號  © 2020-2024 STACKOOM.COM