
永久会员
 
- 威望
- 3556
- 贡献
- 5244
- 热心值
- 0
- 金币
- 3396
- 注册时间
- 2019-8-13
|
Select o.Name As ObjectsName , c.name As ColumnsName , t.name As ColumnsType , c.length As ColumnsLength
From SysObjects As o , SysColumns As c , SysTypes As t
Where o.type in ('u','v') And o.id = c.id And c.xtype = t.xtype
Order By o.name , c.name , t.name , c.Length
|
|