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
tableStatement ::= TABLE table_name [ORDER BY column_name] [LIMIT number [OFFSET number]]
SQL Example
Simplified Query Example, focusing on the failing feature
TABLE columns;
TABLE columns LIMIT10;
TABLE columns LIMIT10 OFFSET 10;
TABLE columns ORDER BY column_name;
TABLE columns ORDER BY column_name LIMIT10;
TABLE columns ORDER BY column_name LIMIT10 OFFSET 10;
Additional context
The used JSQLParser Version : 4.6 (4.7-snapshot also not supported yet)
State the applicable RDBMS and version : MySQL 8.0.23
Links to the reference documentation : https://dev.mysql.com/doc/refman/8.0/en/table.html
The text was updated successfully, but these errors were encountered:
Sorry to be blunt, but I see little value in adding that because its RDBMS specific and redundant.
However, please feel free to submit a PR/Implementation if you are very interested in this particular statement.
Grammar or Syntax Description
TABLE
statement is not supported yettableStatement ::= TABLE table_name [ORDER BY column_name] [LIMIT number [OFFSET number]]
SQL Example
Additional context
The used JSQLParser Version :
4.6
(4.7-snapshot also not supported yet)State the applicable RDBMS and version :
MySQL 8.0.23
Links to the reference documentation : https://dev.mysql.com/doc/refman/8.0/en/table.html
The text was updated successfully, but these errors were encountered: