sql server中查找特定类别的列的写法

复制代码 代码如下:

select a.name, o.name AS TableName, o.type, a.id, o.object_id, o.schema_id
  FROM sys.syscolumns AS a INNER JOIN sys.systypes AS b ON a.xtype = b.xtype
  AND b.name = ‘nvarchar’
   INNER JOIN
  sys.objects AS o ON a.id = o.object_id
  WHERE (o.type = ‘u’)
 AND (o.schema_id = 1)

原创文章,作者:1402239773,如若转载,请注明出处:https://blog.ytso.com/234380.html

(0)
上一篇 2022年1月23日
下一篇 2022年1月23日

相关推荐

发表回复

登录后才能评论