-
Hi @EvgSkv, I have SQL line: |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments
-
Hi @Stetsyk ,
Let me know if you have further questions and if it's a large hurdle for your usecase. |
Beta Was this translation helpful? Give feedback.
-
Hi @EvgSkv, Thank you for your answer. This is suitable for my case. |
Beta Was this translation helpful? Give feedback.
Hi @Stetsyk ,
there is no string escaping and no single quotes just yet.
So quote symbol has to be specified via code. For example if using BiqQuery it's
SqlExpr("Chr(34)", {})
and if using SQLite it'sSqlExpr("Char(34)", {})
.Example of using in context:
Let me know if you have further questions and if it's a large hurdle for your usecase.