資料庫常用操作增加字段減少字段查序列索引

2021-10-23 07:14:37 字數 885 閱讀 3571

select * from user_indexes where table_name=『insx_resource_share_rel_h』 ;–查索引

create index insx_res_share_rel_hsubuserid on insx_resource_share_rel_h (sub_user_id);–建索引

alter table party.cust_students_shen add parents_phone varchar(30);–表增加字段(可空)

alter table party.insx_mosao_gl_info modify remark varchar2(20)not null;–表字段變不可空

alter table party.insx_mosao_gl_info modify remark varchar2(30)null;–表字段變可空

alter table party.insx_mosao_gl_info drop column name;刪除表字段

select * from user_sequences where sequence_name like 『』;查序列

select seq_xx.nextval from dual;

create sequence seq_xx --建立序列名稱

increment by 1 --增長幅度

start with 1 --初始值

maxvalue 9999999999999999; --最大值

rodp sequence seq_xx;刪除序列

alter table test_tab delete primary key 刪除主鍵

alter table test_tab add primary key(id);增加主鍵

資料庫字段操作

1.熟悉oracle sql server資料庫欄位的操作 1 新增乙個新的字段 2 刪除乙個字段 3 修改字段型別 1.在表中新增乙個新的字段 alter table 表名 add 欄位名稱 資料型別 2.修改表中的欄位名稱與字段型別 修改欄位名 alter table 表名 rename col...

mysql資料庫字段操作

建立測試表 create table test id int add支援多列,change drop需要在每列前新增關鍵字,逗號隔開,column 可有可無 新增多列 alter table test add c1 char 1 c2 char 1 alter table test add colu...

資料庫字段

mysql char size 字長字元,0 255位元組 varchar size 變長字元,0 255位元組 date 日期資料,格式為yyyy mm dd hh mm ss datetime 日期資料,比date更確切,包含分秒 int整形資料 double s,p 數字型,可存放實型和整形,...