- 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 件のコメント:
コメントを投稿