Hi,
Im porting an old application and I have a situation dealing with the existing database where I need to find a subsequence inside a numeric field.
I’m working on top of PostgreSQL and with raw SQL and what I see in the old implementation of the application is that they do intfield::text ILIKE '%42%'
Is there a way to achieve the same using the like match operator? How can I cast the integer field to a string type?
Thanks,