zoukankan      html  css  js  c++  java
  • Oracle表字段的增加、删除、修改和重命名

    转自:https://www.cnblogs.com/ggll611928/p/5981498.html

    本文主要是关于Oracle数据库表中字段的增加、删除、修改和重命名的操作。

    增加字段语法:alter table tablename add (column datatype [default value][null/not null],….);

    说明:alter table 表名 add (字段名 字段类型 默认值 是否为空);

       例:alter table sf_users add (HeadPIC blob);

       例:alter table sf_users add (userName varchar2(30) default '空' not null);

    修改字段的语法:alter table tablename modify (column datatype [default value][null/not null],….); 

    说明:alter table 表名 modify (字段名 字段类型 默认值 是否为空);

       例:alter table sf_InvoiceApply modify (BILLCODE number(4));

    删除字段的语法:alter table tablename drop (column);

    说明:alter table 表名 drop column 字段名;

       例:alter table sf_users drop column HeadPIC;

    字段的重命名:

    说明:alter table 表名 rename  column  列名 to 新列名   (其中:column是关键字)

       例:alter table sf_InvoiceApply rename column PIC to NEWPIC;

    表的重命名:

    说明:alter table 表名 rename to  新表名

       例:alter table sf_InvoiceApply rename to  sf_New_InvoiceApply;

  • 相关阅读:
    模型绑定功能
    接口返回的内容
    跨平台的ASP.NET Core简介
    NLog如何打印日志(.Net5)
    注意力创造价值;
    Restful接口的介绍
    电脑设置双屏显示(windows)
    Linq多集合连接
    调试时才执行的代码
    mvc4 路由匹配测试
  • 原文地址:https://www.cnblogs.com/sharpest/p/10508317.html
Copyright © 2011-2022 走看看