列操作詳解

2021-08-30 18:40:40 字數 578 閱讀 1202

--增加列

alter table 表名 add(

列名 型別 [not null/primary key],

……);

--刪除列,如有多列(列名1,列名2,……)

alter table 表名 drop column 列名;

--標記列未使用

alter table 表名 set unused column 列名;

--刪除未使用列

alter table 表名 drop unused columns;

--修改列名

alter table 表名 rename column 老列名 to 新列名

--修改列屬性

alter table 表名 modify (列名 型別);

--新增約束

alter table 表名 add constraint 約束名 [primary key | unique | check ](列名);

--刪除約束

alter table 表名 drop constraint 約束名;

Oracle 列操作 增加列,修改列,刪除列

alter table 表名 add 列名 varchar2 10 alter table 表名 modify 列名 varchar2 20 alter table 表名 drop column 列名 這裡要注意幾個地方,首先,增加和修改列是不需要加關鍵字column,否則會報錯ora 00905。...

文字列操作

char型 int型 文字 unicode 調 使用例 int a 愛 文字列 先頭 指定 文字數分 文字列 取得 使用例 text.substring 0,5 文字列 指定 位置 指定 文字數分 文字列 取得 text.substring i,text.length i 文字列 指定 位置 最後 ...

列資料操作

dbbase bo new dbbase dbtable dt bo.executequery select from question dbcolumncollection dtcol dt.getcolumncollection 列操作 dbcolumn colobj new dbcolumn ...