如何选择列出给定Db表的所有字段名称及其类型?

时间:2012-01-04 15:03:27

标签: sql sql-server tsql

  

可能重复:
  SQL Server: How do you return the column names from a table?

假设我有数据库表: LunchMenuItems

对于MS-SQL Server,如何编写以下的TSQL查询:

列出 LunchMenuItems 表中的所有列名及其类型?

1 个答案:

答案 0 :(得分:2)

描述

此信息可在information_schema.columns

中找到

示例

select column_name, DATA_TYPE from information_schema.columns
where table_name = 'LunchMenuItems'

更多信息