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

Modifica tutte le tabelle nel database

Puoi provare a generare un comando ed eseguirlo dopo. Puoi fare qualcosa del genere:

SELECT CONCAT("Alter Table `", TABLE_SCHEMA,"`.`", TABLE_NAME, "` this is my default value change on the column") as MySQLCMD 
FROM TABLES 

Ed esegui il recupero.