添加字段的語法:alter table tablename add (column datatype [default value][null/not null],….);spa
修改字段的語法:alter table tablename modify (column datatype [default value][null/not null],….);table
刪除字段的語法:alter table tablename drop (column);語法