Skip to main content
Tingwai Tech Knowledge Base
View All
Search
Shelves
Books
Log in
Info
Content
MySQL / MariaDB & MongoDB
MySQL / MariaDB Tricks...
Page Revisions
Revision #22
MySQL / MariaDB Tricks and Solutions
Convert a Column to Uppercase
UPDATE table_name SET
column_name
= UPPER(
column_name
)
Back to top