-- 新增字段
alter table hist_trans add (sett_batch_no nvarchar2(50));
alter table hist_trans add (check_time date) ;
alter table hist_trans add (refund_status integer default 0) ;
-- 修改字段
alter table hist_trans modify mch_ev varchar2(100);
-- 刪除字段
alter table hist_trans drop column refund_status ;
-- 新增注釋
comment on column hist_trans.refund_status is '退款狀態:1為已退款,2為未退款';
-- 新增主鍵
alter table sys_syspara_info add constraint pk_sys_syspara_info primary key (si_id)
-- 新增外來鍵
alter table sys_syspara_info add constraint fk_systype_ref_syspara foreign key (si_para_id) references sys_syspara_type (st_id);
-- 刪除主鍵
alter table sys_syspara_info drop constraint pk_sys_syspara_info;
-- 刪除外來鍵
alter table sys_syspara_info drop constraint fk_systype_ref_syspara;
-- 建立索引
create index index_sb_bank_id on posp_subbranch (sb_bank_id)
tablespace qbposp
pctfree 10
initrans 2
maxtrans 255
storage
(initial 64k
next 1m
minextents 1
maxextents unlimited
) ;-- 建立序列
create sequence sys_mer_role_seq
minvalue 1
maxvalue 9999999999999999999999999999
start with 91
increment by 1 ;
cache 20;
-- 建立表
create table posp_news
(news_id integer not null,
news_title_cn varchar2(100) not null,
news_content_cn varchar2(4000) not null,
news_status integer not null,
news_expirydate date not null,
news_send_name varchar2(50),
news_send_time date,
news_remark varchar2(1000)
)tablespace qbposp
pctfree 10
initrans 1
maxtrans 255
storage
(initial 64k
next 1m
minextents 1
maxextents unlimited
);
sql常用sql語句
1 查詢某個庫中所有的表名字 select name from sysobjects where xtype u and name dtproperties order by name 2 得到資料庫中所有使用者檢視 select name from sysobjects where xtype v...
sql 常用的語句
說明 複製表 只複製結構,源表名 a 新錶名 b sql select into b from a where 1 1 說明 拷貝表 拷貝資料,源表名 a 目標表名 b sql insert into b a,b,c select d,e,f from b sql select a.title,a....
常用的SQL語句
1.select語句語法 select語句的基本語法如下 select column1,column2,columnn from table name 這裡列1,列2.想獲取其值表的字段。如果想獲取在該字段的所有可用字段,那麼可以使用下面的語法 select from table name 2.in...