博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
2012-06-25 基本调整数据库结构方法
阅读量:6677 次
发布时间:2019-06-25

本文共 806 字,大约阅读时间需要 2 分钟。

--删除添加一个或多个字段

alter table jb add (sx varchar2(10), gb number(10), pr number(5,2))

--删除字段

alter table jb drop column gb

--更改字段类型

alter table jb modify lrtb number(10,2)

--修改表名

alter table tablename rename to new_table_name;

--添加注释

comment on column jb.jyfw is '经营范围';

--添加字段

alter table runway_ts add

(
HIGHEST_POINT_ID     VARCHAR2(36),
HIGHEST_POINT_POSITION VARCHAR2(100),
HIGHEST_POINT_POSITION_AIP VARCHAR2(100)
);

--添加约束

alter table RUNWAY_TS

   add constraint "FK_POINT-RUNWAYTS" foreign key (HIGHEST_POINT_ID)
      references POINT (POINT_ID);

--重命名列,数据不丢失

ALTER TABLE databack.apron_ts RENAME COLUMN airport_heliport2apron_ts to airport_heliport_uuid

--重命名约束

ALTER TABLE AIRPORT_HELIPORT_TS RENAME CONSTRAINT "FK_EXVERSION-AIRPORRTTS1371" TO FK_EXVERSION_EFF;

转载于:https://www.cnblogs.com/mol1995/p/5969726.html

你可能感兴趣的文章
我的友情链接
查看>>
Linux系统新手学习的11点建议
查看>>
linux系统的启动过程
查看>>
输出 pdf
查看>>
【书签】valgrind - the dynamic analysis tools
查看>>
01262015要看的blog——oracle tuning
查看>>
[信息图]电子商务营销的6大步骤
查看>>
Hibernate注释大全收藏
查看>>
加速sshd
查看>>
tar.gz安装
查看>>
【转】C++文件流の添加数字到指定文件中
查看>>
神奇犁头草,治疗肿毒效如神
查看>>
linux bash环境变量简单总结
查看>>
蓝桥杯 马虎的算式(全排列)
查看>>
数据库表中批量替换某个字段的方法
查看>>
典型用户和场景
查看>>
bzoj2539
查看>>
My thoughts after NOIP 2018(1)
查看>>
create-react-app按需引入antd-mobile
查看>>
DensePose: Dense Human Pose Estimation In The Wild(理解)
查看>>