I have tried with the query SELECT * FROM table_a WHERE id = 1987 AND worklist LIKE "%'worklistConfig':'clientLevel'%";
It is working in my sql & powershell. but i need to execute this is procedure via powershell. i have tried with the below query.
SELECT * \r\nFROM ch_form_worklist WHERE id = 1987 AND worklist LIKE "%'worklistConfig':'clientLevel'%";
You can see the \r\n
in the query. So how to apply the LIKE statement in the query "%'worklistConfig':'clientLevel'%";
I have re-write with the below query,
SELECT * \r\nFROM ch_form_worklist WHERE id = 1987 AND worklist LIKE ''%worklistConfig:clientLevel%'';
is it ok or need to modify the like statement?