可能重复:
Printing Table's structure/schema
oracle has 'DESCRIBE' to get all the details of the table like wise does t/sql has any thing
我希望获得带有结构的表格列表。 假设我有20或更多。 我该怎么做? 这个查询得到了表的列表:
SELECT * FROM INFORMATION_SCHEMA.Tables
但 我想要这个
Name Structure
Product ID int Primary key,Name nvarchar(50),...........
Group ID int Primary key, Name nvarchar(50),..........
Employee ID int Primary Key,Name nvarchar(50), Address (300), ........
答案 0 :(得分:3)
您可以使用
sp_columns tablename