I want a query to return rows with the column having entries like following:
abcda%aaa, pa%rdeep, sonisa%b etc.
Tried using following but doesn't get the desired results.
select * from table where column like "%a%%"
I want correct replacement for above so as to search for only those rows having "a%"
as an entry for the column in the table not those starting with a.