Table created.
SQL> select * from pager;
no rows selected
SQL> insert into pager (PAG_ID,PAG_PARENT,PAG_NAME,PAG_ACTIVE)
2 select 8000,0,'Multi 8000',1 from dual
3 union all select 8001,0,'Multi 8001',1 from dual;
2 rows created.
SQL> select * from pager;
PAG_ID PAG_PARENT PAG_NAME PAG_ACTIVE
---------- ---------- -------------------- ----------
8000 0 Multi 8000 1
8001 0 Multi 8001 1
No comments:
Post a Comment