How to List Field's Name in table in Access Using SQL

后端 未结 14 1276
我在风中等你
我在风中等你 2020-12-09 17:15

Can you please let me know if it is possible to list all fields name in a MS Access table?

14条回答
  •  伪装坚强ぢ
    2020-12-09 17:52

    Build query:

    SELECT Table_Name.*
    FROM Table_Name
    WHERE False;
    

    Export to Excel You will have each field name in one row without any data. If you select the row and copy, you can paste special>transpose and have them all in a single column.

提交回复
热议问题