У меня есть базовый запрос, который успешно выполняется в HUE, но не в RazorSQL (IDE). Я пробовал несколько способов избежать одиночной кавычки, но безрезультатно.
select * from table where channel_name = "This isn't it"; --what I want to run and runs successfully in HUE
--the following returns me nothing or give me an error
select * from table where channel_name = "This isn"'t it";
select * from table where channel_name = "This isn\'t it";
select * from table where channel_name = This isn"'t it';
select * from table where channel_name = 'This isn\'t it';