Hi,
I am using Table Transformer macro with the SQL
Select * from T1 where T1.'Status' IN ("To Do", "Done", "Won't Do")
How do I include the apostrophe in "Won't Do" in the where clause? Thanks.
Hi @Leona ,
Please try the following SQL query:
SELECT * FROM T1
WHERE T1.'Status' IN ("To Do", "Won"+ CHAR(39) + "t Do")
Hope this helps.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hi @Leona ,
try to use double '
Example :
Select * from T1 where T1.'Status' IN ('To Do', 'Done', 'Won''t Do')
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Online forums and learning are now in one easy-to-use experience.
By continuing, you accept the updated Community Terms of Use and acknowledge the Privacy Policy. Your public name, photo, and achievements may be publicly visible and available in search engines.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.