|
-
Here's the dmls:
create table TEMP1
(
COL1 VARCHAR2(64),
COL2 VARCHAR2(64),
COL3 VARCHAR2(64)
);
insert into TEMP1 (COL1, COL2, COL3)
values ('1', 'Option1', 'Val1');
insert into TEMP1 (COL1, COL2, COL3)
values ('1', 'Option2', 'Val2');
insert into TEMP1 (COL1, COL2, COL3)
values ('1', 'Option3', 'Val3');
insert into TEMP1 (COL1, COL2, COL3)
values ('1', 'Option4', 'Val4');
insert into TEMP1 (COL1, COL2, COL3)
values ('1', 'Option5', 'Val5');
insert into TEMP1 (COL1, COL2, COL3)
values ('2', 'Option1', 'Val6');
insert into TEMP1 (COL1, COL2, COL3)
values ('2', 'Option2', 'Val7');
insert into TEMP1 (COL1, COL2, COL3)
values ('2', 'Option4', 'Val8');
insert into TEMP1 (COL1, COL2, COL3)
values ('3', 'Option2', 'Val9');
insert into TEMP1 (COL1, COL2, COL3)
values ('3', 'Option3', 'Val10');
insert into TEMP1 (COL1, COL2, COL3)
values ('3', 'Option4', 'Val11');
insert into TEMP1 (COL1, COL2, COL3)
values ('3', 'Option5', 'Val12');
Tags for this Thread
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
-
Forum Rules
|
Click Here to Expand Forum to Full Width
|