加入收藏 | 设为首页 | 会员中心 | 我要投稿 李大同 (https://www.lidatong.com.cn/)- 科技、建站、经验、云计算、5G、大数据,站长网!
当前位置: 首页 > 百科 > 正文

oracle常用SQL

发布时间:2020-12-12 12:37:31 所属栏目:百科 来源:网络整理
导读:oracle常用SQL 表(table) 创建 -- Create tablecreate table t_table_name( _id NUMBER(10) primary key,_column_1 NUMBER(10));-- Add comments to the table comment on table t_table_name is '表备注';-- Add comments to the columns comment on colu

oracle常用SQL

表(table)

创建

-- Create table
create table t_table_name
(
  _id  NUMBER(10) primary key,_column_1      NUMBER(10)
);
-- Add comments to the table 
comment on table t_table_name
  is '表备注';
-- Add comments to the columns 
comment on column t_table_name.column_1
  is '列备注';

删除

drop table t_table_name;

修改

 

索引(index)

创建

-- Create index 
create index index_name on table_name(column_name);

删除

drop index index_name;

修改

 

序列(sequence)

创建

-- Create sequence 
create sequence seq_name
minvalue 1
maxvalue 9999999999
start with 1
increment by 1
cache 10;

删除

drop sequence seq_name;

修改

(编辑:李大同)

【声明】本站内容均来自网络,其相关言论仅代表作者个人观点,不代表本站立场。若无意侵犯到您的权利,请及时与联系站长删除相关内容!

    推荐文章
      热点阅读