I would like to run a query like the following on Amazon Athena
Select * from my_table
where my_table.my_field like '%'sample_text'%'
I want to match the single quotes and the underscore in 'sample_text'.
I've tried variations of escape characters like \_, \\_, [_], `_, and `_` without success.
Is this possible?