Skip to content

MySQLカラムの変更

MySQLカラムの変更

カラムの属性を変更
alter table window modify windowid int(3) not null

カラム削除
alter table customize drop customerid

カラム追加
alter table customize add customerid int(5)

Bookmark this on Delicious

Categories: MySQL.

Tags: