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
CREATE TABLE TB_SOURCE( | |
col1 VARCHAR2(10), | |
col2 VARCHAR2(20), | |
col3 VARCHAR2(20) | |
); | |
CREATE TABLE TB_TARGET( | |
new_col1 VARCHAR2(10), | |
new_col2 VARCHAR2(20), | |
new_col3 VARCHAR2(20) | |
); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment