Mysql
 sql >> Datenbank >  >> RDS >> Mysql

Spalte in MySQL von int auf double ändern?

Hier ist die eigentliche Syntax. Stellen Sie sicher, dass Sie auch die Nullfähigkeit entsprechend festlegen:

ALTER TABLE your_table
MODIFY COLUMN your_column DOUBLE NULL;

oder

ALTER TABLE your_table
MODIFY COLUMN your_column DOUBLE NOT NULL;