select columns from sql table change to upper case and update the data code example
Example: oracle sql query to make column data uppercase
UPDATE
MyTable
SET
MyColumn = UPPER(MyColumn)
UPDATE
MyTable
SET
MyColumn = UPPER(MyColumn)