Created
June 11, 2014 10:36
-
-
Save xtender/ae3bc349c76a429cf6ae to your computer and use it in GitHub Desktop.
additional_jim
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
begin | |
insert into chairmanships ( chairperson, date_from, date_to) | |
values | |
( 'Jim' , to_date('01-01-2000', 'DD-MM-YYYY') , to_date('01-05-2000', 'DD-MM-YYYY') | |
); | |
insert into chairmanships ( chairperson, date_from, date_to) | |
values | |
( 'Jim' , to_date('02-05-2000', 'DD-MM-YYYY') , null | |
); | |
commit; | |
end; | |
/ |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment