查表中所有列名及其对于类型

--查表中所有列名及其对于类型
select a.name columnName,b.name columnType
from syscolumns a,systypes b
where a.xusertype=b.xusertype
and a.id=object_id('Person')

以上查的是Person表

posted on 2010-07-30 12:07  Leon_He  阅读(261)  评论(0编辑  收藏  举报

导航