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
json_object
SQL server has a json_object function with a special syntax that uses colons instead of commas between json keys and values.
SELECT JSON_OBJECT('name':'value', 'type':1)
This is not yet supported in sqlparser. This would be useful in SQLPage where we use json for advanced features.
Reference: https://learn.microsoft.com/en-us/sql/t-sql/functions/json-object-transact-sql?view=sql-server-ver16
@gaoqiangz this may be of interest to you :)
The text was updated successfully, but these errors were encountered:
👌
Sorry, something went wrong.
JSON_ARRAY
JSON_OBJECT
Fixed by @gaoqiangz . Thank you !
No branches or pull requests
SQL server has a json_object function with a special syntax that uses colons instead of commas between json keys and values.
This is not yet supported in sqlparser. This would be useful in SQLPage where we use json for advanced features.
Reference: https://learn.microsoft.com/en-us/sql/t-sql/functions/json-object-transact-sql?view=sql-server-ver16
@gaoqiangz this may be of interest to you :)
The text was updated successfully, but these errors were encountered: