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