I have a record with a value Jacj%25011987
. I wanted to search the record with %
as a character in a string.
I wanted to search this record using the Like
in where
clause.
I tried these queries, but they didn't work:
Select *
From Table1 With (Nolock)
Where Column1 like '%\%%'
Select *
From Table1 With (Nolock)
Where Column1 like '%'%%'
Thanks Parag