美文网首页
MySql中ALTER的用法

MySql中ALTER的用法

作者: Java小白笔记 | 来源:发表于2022-01-26 15:34 被阅读0次

MySql中ALTER的用法

1.案例

  • 增加mysql表一个字段

    
    ALTER TABLE 表名    
        ADD COLUMN 列名 varchar(50) DEFAULT null comment '注释' ;
    
    
  • 新增多个字段cxx 和shoneworn

     alter table emp add (cxx varchar(2),shoneworn varchar(2)); 
    
    
  • 在表emp中删除一个字段 sexy

     alter table emp drop column sexy;
    
    
  • 删除多个字段

 alter table emp drop  (cxx, shoneworn);
  • 修改字段名

    alter table emp rename column old_columnname to new_name;
    

相关文章

网友评论

      本文标题:MySql中ALTER的用法

      本文链接:https://www.haomeiwen.com/subject/gsunhrtx.html