标签: mysql sql
我有一个表,其中5列有数据。如何将3个String列的数据更新为大写?
答案 0 :(得分:2)
UPDATE your_table SET your_column = UPPER(your_column)