Created
January 1, 2020 07:41
-
-
Save VikramVasudevan/1aeb9494bedf8d6890282db17e998407 to your computer and use it in GitHub Desktop.
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
table_columns_stg AS (SELECT c.table_name, | |
t.trigger_sql, | |
c.column_name, | |
column_id | |
FROM prm_input t, user_tab_columns c | |
WHERE t.table_name = c.table_name), |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment