Created
November 29, 2013 00:44
-
-
Save beydogan/7700038 to your computer and use it in GitHub Desktop.
CME4413 - Example Insert Query SQL
This file contains 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
INSERT INTO EMPLOYEE VALUES | |
(2, | |
NAME_TYPE(TEMPORAL_VARCHAR('23.11.2003','09.09.2099','James Brown')), | |
ADDRESS_TYPE(TEMPORAL_VARCHAR('23.11.2003','09.09.9999','BUCA')), | |
'23.11.2003', | |
MANAGER_TYPE(TEMPORAL_VARCHAR('23.11.2003','09.09.9999','Mike White')), | |
DEPARTMENT_TYPE(TEMPORAL_VARCHAR('23.11.2003','09.09.9999','DEPT_ID05')), | |
SALARY_TYPE(TEMPORAL_NUMBER('23.11.2003','09.09.9999', 250000)) | |
); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment