mysql修改列數(shù)據(jù),怎么修改表中的記錄?
mysql修改數(shù)據(jù)表的語(yǔ)法結(jié)構(gòu)一般來(lái)說(shuō)通過(guò)alter語(yǔ)句即可。
1、增加列[add 列名]J例:alter table test add username char(20) not null default '';
2、刪除列[drop 列名]alter table test drop pid;
3、修改列[modife 列名]alter table test modify gender char(4) not null default '';