DB2資料庫相關操作

2021-08-07 20:04:24 字數 974 閱讀 7800

自增字段的建立

start with 1 increment by 1

cache 20 no cycle no order;

--設定自增序列從20001開始

alter sequence linkage_seq restart with 20001;

使用自增字段 插入一條資料

insert into linkage values (next value for linkage_seq,current date,'account1','sub1','0');
修改列型別
alter table db2admin.ftp_adjust_definition alter column start_date  set data type timestamp;

alter table db2admin.ftp_adjust_definition alter column update_date set data type timestamp;

年月日 時分秒的顯示
to_char(far.start_date,'yyyy-mm-dd hh24:mi:ss'),
timestamp型別 的資料是 current timestamp
create table db2admin.aaaaa (

start_date timestamp,

update_date timestamp

) ;select * from aaaaa;

insert into aaaaa values(current timestamp,current timestamp);

(select current timestamp from sysibm.sysdummy1)

查詢表及列名及備註
select * from sysibm.syscolumns;

db2資料庫字段操作相關問題

新增字段 alter table 表名 add column 欄位名 字段型別 default 預設值 例 alter table user add column user age integer default 0 刪除字段 altertable 表名 dropcolumn 欄位名 修改現有字段命...

DB2 命令 資料庫操作

標籤 空格分隔 db2例項 db2授權 資料庫 資料庫名稱 database name lqr 使用者名稱 user name lqr 檢視表空間名稱 db2 list tablespaces show detail 表空間名稱 需要大寫 tablesapce name userspace1 例項或...

全新db2資料庫操作

前提 乙個全新的資料庫沒有任何庫。1 通過遠端桌面連線到資料庫所在的電腦,2 執行db2cmd administartor.由於使用的是administrator登入的遠端桌面,在登入進去的時候就administrator就是db2的超級管理員。首先要明白乙個道理,資料庫的超級管理員才能給使用者授權...