We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
FOR ORDINALITY
JSON_TABLE
Initially reported in sqlpage/SQLPage#658
This is a follow-up on #1019
I already implemented most of json_table, but we are still missing support for FOR ORDINALITY columns.
json_table
Reference: https://dev.mysql.com/doc/refman/8.0/en/json-table-functions.html#function_json-table
Exemple:
SELECT jt.* FROM JSON_TABLE( '["Alice", "Bob", "Charlie"]', '$[*]' COLUMNS( row_num FOR ORDINALITY, name VARCHAR(50) PATH '$' ) ) AS jt;
try online
The text was updated successfully, but these errors were encountered:
add support for FOR ORDINALITY in JSON_TABLE
9944ca8
fixes apache#1492
NESTED
Successfully merging a pull request may close this issue.
Initially reported in sqlpage/SQLPage#658
This is a follow-up on #1019
I already implemented most of
json_table
, but we are still missing support forFOR ORDINALITY
columns.Reference: https://dev.mysql.com/doc/refman/8.0/en/json-table-functions.html#function_json-table
Exemple:
try online
The text was updated successfully, but these errors were encountered: