Created
March 26, 2014 12:33
-
-
Save zelark/9782117 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
create table tmp_t1 | |
( | |
amount number, | |
txt varchar2(50 char) | |
); | |
insert into tmp_t1 | |
(amount, txt) | |
values | |
(1, 'text 1'); | |
insert into tmp_t1 | |
(amount, txt) | |
values | |
(2, 'text 2'); | |
insert into tmp_t1 | |
(amount) | |
values | |
(3); | |
insert into tmp_t1 | |
(amount, txt) | |
values | |
(3, 'text 3'); | |
insert into tmp_t1 | |
(amount, txt) | |
values | |
(-1, 'text 4'); | |
insert into tmp_t1 | |
(amount, txt) | |
values | |
(-2, 'text 5'); | |
insert into tmp_t1 | |
(amount) | |
values | |
(-2); | |
insert into tmp_t1 | |
(amount, txt) | |
values | |
(-3, 'text 6'); | |
commit; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment