使用另一个表中的列名创建表

使用另一个表中的列名创建表

我想创建一个包含两列的表:

Table Name
Column Name

因此,我会读取 3 个表,然后为每个表的每个列创建一行,其中包含表名和列名。例如:

Account_Table
Account_id
Account_Name
Account_Address

Customer_Table
Customer_id
Customer_name
Customer_address

Merchandise_Table
Merch_Sku_number
Merch_Description

因此我创建的表格看起来如下:

Account_table     Account_id
Account_table     Account_name
Account_table     Account_address
Customer_table    Customer_id
Customer_table    Customer_name

等等,明白了吗?

有人能告诉我怎么做吗?

相关内容