码迷,mamicode.com
首页 > 数据库 > 详细

获取数据库中用户表所有列和列的数据类型

时间:2020-01-17 09:58:37      阅读:105      评论:0      收藏:0      [点我收藏+]

标签:www   select   table   nbsp   span   类型   tab   ide   types   

原文:获取数据库中用户表所有列和列的数据类型

获取数据库中,所有用户表中每一列名和其数据类型。

技术图片

 

技术图片
SELECT OBJECT_NAME(c.OBJECT_ID) AS [Table_Name], c.[name] AS [Column_Name] ,t.[name] AS [Data_Type_Name]  
FROM sys.columns AS c  
LEFT JOIN SYSOBJECTS AS s ON (c.[object_id] = s.[id])  
LEFT JOIN sys.types AS t ON (c.[user_type_id]=t.[user_type_id])
WHERE s.xtype = U

 

获取数据库中用户表所有列和列的数据类型

标签:www   select   table   nbsp   span   类型   tab   ide   types   

原文地址:https://www.cnblogs.com/lonelyxmas/p/12204144.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!