1
It is possible to use like
and in
in the same SQL command? For example, I need to search in the table stockpile the Serial Number that can be 'SCAB171293E29','SCAB171293E4E'
but they might have something else at the end so I thought of something like this:
Select numeroserie from public.estoque where numeroserie like in ('SCAB171293E29%','SCAB171293E4E%')
But obviously it was wrong. Are there any way to accomplish this select
?
one
OR
does not solve the problem?– rray
@rray Serão
n
serial numbers– R.Santos