select * from Table
where name like '%\%\%\%\%%'
the above code snipped was supposed to fetch rows that contains 4 percentage sign. But instead it fetch rows that contains at least one percentage sing .
How can i achieve the goal of the code (find rows that contains at least 4 percentage sign)