Skip to content

Instantly share code, notes, and snippets.

@zelark
Created March 26, 2014 12:33
Show Gist options
  • Save zelark/9782117 to your computer and use it in GitHub Desktop.
Save zelark/9782117 to your computer and use it in GitHub Desktop.
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