码迷,mamicode.com
首页 > 其他好文 > 详细

修改删除表

时间:2021-05-24 08:42:42      阅读:0      评论:0      收藏:0      [点我收藏+]

标签:varchar   rename   test   code   char   alter   strong   重命名   arch   

修改删除表

  • 修改

-- 修改表名
alter table test rename as tttt
-- 怎加表的字段
alter table tttt add age int(11)
-- 修改表的字段(重命名,修改约束)
alter table tttt modify age varchar(11)   -- 修改约束
ALTER TABLE tttt change age age1 int(11)  -- 字段重命名
-- 删除表的字段
alter table tttt drop age1
  • 删除表

    -- 删除表
    drop table if exists tttt
    
所有的创建和删除操作尽量加上判断,以免报错~

注意点:

  • ``字段名,使用这个包裹!
  • 注释 — //**
  • sql关键字大小写不敏感,建议写小写
  • 所有的符号全部用英文!

修改删除表

标签:varchar   rename   test   code   char   alter   strong   重命名   arch   

原文地址:https://www.cnblogs.com/saxonsong/p/14767111.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!