Is it possible to use like
and in
in the same SQL command? For example, I need to search the stock table for the Serial Number that can be 'SCAB171293E29','SCAB171293E4E'
but it might be that they have something else in the end so I thought of something like this:
S elect numeroserie from public.estoque where numeroserie like in ('SCAB171293E29%','SCAB171293E4E%')
But obviously it made a mistake. Are there any ways to accomplish this select
?