sql >> Base de Datos >  >> RDS >> Mysql

Mysql:¿cambiar el nombre de todas las tablas y columnas a minúsculas?

Puede intentar hacer exactamente lo mismo con la tabla Information_Schema.Columns

EDITAR:Algo así como

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