i have a table
table:
col1,col2
1,2
3,4
i want to create ETL to extract only port/column name in another table example my target table should contain one column with 2 rows contain column names
target:
target_column
col1
col2
so how can i do that
Query the metadata. Depending on the type of your DB this may differ. For MySQL that would be:
Here, try this fiddle.