I would like to convert all the data if in lower case in snowflake table to upper case.
I have multiple catalogs, schemas and then tables. Would like to do this with Python.
Is there a straight query on table to convert all the data (columns) into upper case?
I have the following query, but I would like to do it for a specific data type and for only data that
is lower case(If this is faster) else for the entire table..
UPDATE MyTable
SET MyColumn = UPPER(MyColumn)
WHERE MyColumn != UPPER(MyColumn) COLLATE Latin1_General_CS_AS
How do I do it for multiple columns at once for the table??