how do we get data that contains '&'
Example:
select * from table
where column like 'a&b%'
This assumes &b as subsitution and asks for value. how to escape the &?
Example:
select * from table
where column like 'a&b%'
This assumes &b as subsitution and asks for value. how to escape the &?
Comment