Hello !
I want to optimize my SQL query that is using many ‘like%’ to use one IN
This is my example working but it is not optimized
select * from tableau where column1 like '%11223%' or
column1 like '%445566%' or
column1 like '%778899%' ;
I want to replace the use of or because there is still many values
Thanks in advance