I want to insert a variety of SQL queries into a Trino table as a VARCHAR.
There are a multitude of items that throw errors for example single quotes, keywords like "table" being a column name, -- SQL comments that throw errors when Trino is reading the SQL INSERT query.
Is there a data type where I can just dump string type data that may contain things like keywords, SQL comments, single quotes? Trying VARCHAR doesn't seem to be the answer.