Oracle 对表的基本CURD操作

Oracle对表的基本Curd操作:

  样式表:    Oracle 对表的基本CURD操作    接下来对这张(表明:Stud)表进行Curd操作(请看??面SQL代码)

 

  增加新的字段列:alter table Stud add(height varchar2(100))

       解释:alter table 表名称 add(字段名 字段类型  默认值 是否为空);--此出的默认值 是否为空可省略不写        关键字add

                           Oracle 对表的基本CURD操作            Oracle 对表的基本CURD操作

  修改字段的类型:alter table Stud modify(height number(4))

       解释:alter table 表名称 modify (字段名 字段类型  默认值 是否为空);--此出的默认值 是否为空可省略不写   关键字modify

                                   Oracle 对表的基本CURD操作          Oracle 对表的基本CURD操作

  修改字段名称:alter table Stud rename column height to gao  

      解释: alter table 表名称 rename column 想要修改的列名称 to 列的新名称                                                          关键字rename column  * to *

                  Oracle 对表的基本CURD操作            Oracle 对表的基本CURD操作

  删除表中多余的列:alter table Stud drop column gao

      解释:alter table 表明称 drop column 不想要的列                             关键字drop column

                                 Oracle 对表的基本CURD操作                 Oracle 对表的基本CURD操作

      修改表的的名称:alter table Stud rename to xuesheng (不会破坏表的结构和字段类型及其内容)           关键注意表明称不要写反

         解释:alter table 原表名称 to 改后的表明

          Oracle 对表的基本CURD操作

 

Oracle 对表的基本CURD操作

上一篇:Oracle-启动监听服务失败问题处理


下一篇:Mysql调优-3Mysql的索引