sqlcurious
asked on
somehow not filtering the value
Hi I am trying to filter the value which is not like 'SR' using below statement but somehow still able to see SR000003
where service_id not like 'SR%'
Pls help, thnks
where service_id not like 'SR%'
Pls help, thnks
ASKER CERTIFIED SOLUTION
membership
Create a free account to see this answer
Signing up is free and takes 30 seconds. No credit card required.
ASKER
thnks
where upper(service_id) not like 'SR%'
to eliminate case sensityvity issue