SQL Query: LIKE x%

900 Views Asked by At

I have a problem with my SQL Query and I would kindly ask for help.

I have rows like:

2% 

20%

a 20% b

a 2 b

a 2% b

etc.

I want to see only those that contain '2%' inside the string.

When I wanted to filter them using:

WHERE ColA LIKE '%2%%' 

it showed all above rows, instead of only:

2%

a 2% b

Could you help me with it?

2

There are 2 best solutions below

1
On BEST ANSWER

Try this

WHERE ColA LIKE '%2[%]%' 
1
On

% matches any string in SQL, you have to escape the %. You can do this by defining an escape character in the same command:

WHERE ColA LIKE '%2/%%' ESCAPE '/';