可能重复:
SQL Server: How do you return the column names from a table?
假设我有数据库表: LunchMenuItems
对于MS-SQL Server,如何编写以下的TSQL查询:
列出 LunchMenuItems 表中的所有列名及其类型?
答案 0 :(得分:2)
此信息可在information_schema.columns
。
select column_name, DATA_TYPE from information_schema.columns
where table_name = 'LunchMenuItems'