美文网首页MySQL
MySQL 表操作

MySQL 表操作

作者: RicherYY | 来源:发表于2020-04-13 21:21 被阅读0次

    完美创建表

    drop table if exists 表名;
    
    create table student(
    
    name varchar(20) not null comment '注释',
    
    字段 数据类型(长度) default'默认值',
    
    #例子
    
    age int(2) default 0,
    
    score double(5,2) default null)
    
    engine=InnoDB charset=utf8;
    

    查看表的结构

    desc 表名;
    

    给表改名

    alter table 原表名 rename as 新表名;
    

    给表添加字段

    alter table 表名 add 字段名 数据类型 ……; 
    

    修改字段类型

    alter table  表名 modify 字段名 数据类型……;
    

    修改字段名

     alter table 表名 change 原字段名 新字段名 数据类型……;
    

    删除表中字段

    alter table 表名 drop 字段名;
    

    相关文章

      网友评论

        本文标题:MySQL 表操作

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