You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
ESCAPE <expression> must not interpret Escape codes.
-- failsselect case
when id_portfolio like'%\_1' escape '\' then '1' end;-- worksselect case when id_portfolio like '%\_1' then '1' end;-- worksselect *from dualwhere id_portfolio like '%\_1' escape '\';
Odd enough even GitHub Syntax highlighting gets confused?!