What is a good way to specify string column and table names? #185
Answered
by
go-jet
cemremengu
asked this question in
Q&A
-
I would like to create statements where user can specify column and table names. What is good way to do this? Something like:
|
Beta Was this translation helpful? Give feedback.
Answered by
go-jet
Oct 25, 2022
Replies: 1 comment 3 replies
-
Hi @cemremengu, You can specify single column, the same way as the list of columns: SELECT(
Node.AllColumns,
Node.SingleColumn,
).FROM(
Node,
) Check the wiki. |
Beta Was this translation helpful? Give feedback.
3 replies
Answer selected by
cemremengu
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Hi @cemremengu,
You can specify single column, the same way as the list of columns:
Check the wiki.