Network Security Internet Technology Development Database Servers Mobile Phone Android Software Apple Software Computer Software News IT Information

In addition to Weibo, there is also WeChat

Please pay attention

WeChat public account

Shulou

Query table structure sql

2025-04-10 Update From: SLTechnology News&Howtos shulou NAV: SLTechnology News&Howtos > Database >

Share

Shulou(Shulou.com)06/01 Report--

SELECT

Table Name = Case When A. collation =1 Then D.name Else '' End,

Table Description = Case When A. collation =1 Then isnull(F.value,'') Else '' End,

Field number = A. collation,

Field name = A.name,

Field Description = isnull(G. [value],''),

ID = Case When COLUMNPROPERTY(A.id, A.name,'IsIdentity')=1 Then ''Else'' End,

Primary key = Case When exists(SELECT 1 FROM sysobjects Where xtype='PK' and parent_obj=A.id and name in (

SELECT name FROM sysindexes WHERE indid in( SELECT indid FROM sysindexkeys WHERE id = A.id AND colid=A.colid))) then '√' else '' end,

Type = B.name,

Length = A.Length,

Length = COLUMNPROPERTY(A.id,A.name,'PRECISION'),

decimal places = isnull(COLUMNPROPERTY(A.id,A.name,'Scale'),0),

When A.isnullable=1 Then '√'Else '' End,

Default = isnull(E.Text,'')

FROM

syscolumns A

Left Join

systypes B

On

A.xusertype=B.xusertype

Inner Join

sysobjects D

On

A.id=D.id and D.xtype='U' and D.name'dtproperties'

Left Join

syscomments E

on

A.cdefault=E.id

Left Join

sys.extended_properties G

on

A.id=G.major_id and A.colid=G.minor_id

Left Join

sys.extended_properties F

On

D.id=F.major_id and F.minor_id=0

--where d.name ='OrderInfo' --If only the specified table is queried, add this condition

Order By

A.id,A.colorder

Welcome to subscribe "Shulou Technology Information " to get latest news, interesting things and hot topics in the IT industry, and controls the hottest and latest Internet news, technology news and IT industry trends.

Views: 204

*The comments in the above article only represent the author's personal views and do not represent the views and positions of this website. If you have more insights, please feel free to contribute and share.

Share To

Database

Wechat

© 2024 shulou.com SLNews company. All rights reserved.

12
Report