2008年12月26日金曜日

Oracleで通番を設定

Oracleで指定しないで通番を指定するには


create table tbl_tree (
id number,
name varchar2(255) not null,
treeXML XMLType,
create_dt_d timestamp,
update_dt_d timestamp,
primary key ( id )
);

create sequence tblTree_id start with 1 increment by 1;

select tbltree_id.nextval from dual;


という風に「tblTree_id」のような変数を作って
指定する必要があります。

SQLではtblTree_id.nextvalみたいな設定が必要です。

0 件のコメント: