美文网首页
常用sql语句

常用sql语句

作者: OK2018 | 来源:发表于2019-04-02 10:38 被阅读0次
    delete from 表名;
    truncate table 表名;
    
    delete from命令格式:delete from 表名 where 表达式
    
    查询表的字段信息
    desc 表名称;
    
    
    
    # 语法
    alter table 表名称 change 字段原名称 字段新名称 字段类型 [是否允许非空];
     
    # eg.
    # 修改表expert_info中的字段birth,允许其为空
    alter table expert_info change birth birth varchar(20) null;
    
    # 语法
     alter table table_name add column column_name type default value; type指该字段的类型,value指该字段的默认值
     
    # eg.
    alter table mybook add column publish_house varchar(10) default '';
    
    
    #删除字段
    alter table form1 drop column 列名;
    
    

    相关文章

      网友评论

          本文标题:常用sql语句

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