Mysql
 sql >> Database >  >> RDS >> Mysql

Mysql - Rinominare tutte le tabelle e le colonne in minuscolo?

Puoi provare a fare esattamente la stessa cosa con la tabella Information_Schema.Columns

EDIT:Qualcosa come

SELECT CONCAT('ALTER TABLE ', TABLE_NAME, ' CHANGE `', COLUMN_NAME, '` `',
LOWER(COLUMN_NAME), '` ', COLUMN_TYPE, ';')
FROM INFORMATION_SCHEMA.COLUMNS WHERE TABLE_SCHEMA = '{your schema name}'