I have to perform this query
select * from mytable where number like '%11%
where number is a numeric field. I found the solution for Postgres doing this:
select * from mytable where CAST(number as text) like '%11%
But if i try to execute this query in Oracle or MySQL, i have an error. I need a
cross-db instruction that do this.