I have a table with a column "Remarks"...How to search "%" in this column?
Like this
where Remarks like'%[%]%'
you need to put brackets around it, more info here LIKE (Transact-SQL)
SELECT *
FROM YourTable
WHERE CHARINDEX('%', Remarks) > 0
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With