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

20 表结构的增删改

时间:2020-02-14 13:16:05      阅读:82      评论:0      收藏:0      [点我收藏+]

标签:tab   rop   drop   结构   窗口查看   mod   arc   alt   窗口   

修改表
在命令窗口查看表结构 desc 表名
添加新字段 alter table 表名 add 字段名 类型
alter table student add phone number(11)
修改字段类型 alter table 表名 modify 字段名 类型
alter table student modify sname varchar2(200)
删除字段 alter table 表名 drop column 字段名
alter table student drop column phone
修改表名 rename 表名 to 新的表名
rename student to stu
rename stu to student
删除表 drop table 表名
drop table student

20 表结构的增删改

标签:tab   rop   drop   结构   窗口查看   mod   arc   alt   窗口   

原文地址:https://www.cnblogs.com/Scorpicat/p/12306761.html

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