You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The validator marks queries with an alias (with or without AS) after window functions like RANK, DENSE_RANK, ROW_NUMBER, CUME_DIST, etc. as incorrect: SELECT RANK() OVER(ORDER BY NULL) rank
Uh oh!
There was an error while loading. Please reload this page.
The validator marks queries with an alias (with or without
AS
) after window functions likeRANK
,DENSE_RANK
,ROW_NUMBER
,CUME_DIST
, etc. as incorrect:SELECT RANK() OVER(ORDER BY NULL) rank
Support for this type of functions is probably not present yet, but weirdly enough the validator doesn't complain for queries without alias.
PHPMyAdmin 4.7.9
MariaDB 10.3.1 (window functions are supported since 10.2.0)
Update: these will also be supported in MySQL 8.0
The text was updated successfully, but these errors were encountered: