找文章 / 找答案
精选问答 更多内容

[SQL独家资料] SQL基本用法(2)

喝酸奶不舔盖青铜四 显示全部楼层 发表于 2024-2-19 18:33:36 |阅读模式 打印 上一主题 下一主题
7、表操作-修改添加字段
alter table 表名 add 字段名 类型(长度) [comment 注释][约束];
1. eg:
2. alter tabel test add city varchar(20) comment '籍贯';
8、修改数据类型
alter table 表名 modify 字段名 新数据类型(长度);
1. eg:
2. alter tabel test modify age varchar(10);
9、修改字段名和字段类型
alter table 表名 change 旧字段名 新字段名 类型(长度)[comment 注释][约束];
1. eg:
2. alter tabel test change name newname varchar(20) comment '新名字';
10、删除字段
alter table 表名 drop 字段名;
1, eg:
2, alter table test drop city;
11、修改表名
alter table 表名 rename to 新表名;
1. eg:
2. alter table test rename to newtest;
12、表操作-删除删除表(让指定表从数据库消失)
drop table [if exists] 表名;
1. eg:
2. drop table if exists newtest;

回复

使用道具 举报

高级模式
您需要登录后才可以回帖 登录 | 免费注册

  • 官方微信

    欢迎关注永洪服务号!收费为0,价值无限

    扫码关注
  • 新浪微博

    让每位用户轻松挖掘数据价值!

    访问新浪微博
  • 智能客服
50W

会员等你来哦

Copyright   ©2012-2024  北京永洪商智科技有限公司  (京ICP备12050607) 京公网安备110110802011451号 |《永洪社区协议》
返回顶部