-
Hi, Can we parse the values the of insert query and append to any the of values Example Query:
|
Beta Was this translation helpful? Give feedback.
Answered by
wumpz
Jul 6, 2022
Replies: 1 comment
-
Look into However, you should know that JSqlParser treats double-quoted identifiers as object names and not string literals. Therefore you get for "test" and "data" a column object. Consider using single quotes. |
Beta Was this translation helpful? Give feedback.
0 replies
Answer selected by
manticore-projects
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Look into
https://github.com/JSQLParser/JSqlParser/wiki/Examples-of-SQL-building#replacing-string-values
this should give you an idea of how to achieve this.
However, you should know that JSqlParser treats double-quoted identifiers as object names and not string literals. Therefore you get for "test" and "data" a column object. Consider using single quotes.