a. Select * from tableA where columnA like '%complete%';
b. Select * from tableA where columnA in ('complete','request');
The possible value for columnA is complete, completed, request, requested..............
My objective is to query those with value complete, completed, request, requested
Normally we will write query where columnA in ('complete','completed','request','requested');
Is there a way to write a much shorter query like Select * from tableA where columnA in like (%complete%, %request%)
?