UPDATE table_name SET col1 = LOWER(col1), col2 = LOWER(col2), col3 = LOWER(col3);
NTN
Edit: update multiple columns. Just keep adding columns as above. There is no direct automated way to update all columns with a single command. Well, technically this is possible with cursors , but I would recommend it, since it looks like a one-time process, and you better write the command once and for all.
source share