1

我正在使用 SQL Server 2005,需要编写一个 select 语句来选择表中的所有行,但只针对某些类型的列。在我的情况下,我想要除 xml、text、ntext、image 或非二进制 CLR 用户定义类型列之外的所有列。

就是那个问题。如果你想知道我为什么这样做,请继续阅读。我EXCEPT用来识别两个数据库中每个表之间的差异,类似于这个问题中概述的内容:SQL compare data from two tables。我不明白为什么INTERSECT在评论中建议,所以我使用 UNION ALL 代替。

我正在使用的代码是:

(select *, 'table a first' as where_missing from A EXCEPT select *,'table a first' as where_missing from B)
union all
(select *,'table b first' as where_missing from B EXCEPT select *, 'table b first' as where_missing from A)

一些表包含不使用的列类型EXCEPT。因此我不想选择那些列。我可以从 information_schema.columns 获取此信息,但是有没有一种很好的方法可以在上面的示例中使用它来代替“*”?

谢谢!

4

1 回答 1

0

除了使用动态 SQL 之外,我认为没有其他方法可以做到这一点。首先选择列:

declare @columns nvarchar(max);
select @columns = stuff( 
    (select ', ' + c.name
    from sys.tables t
    join sys.columns c on t.object_id = c.object_id
    join sys.types ty on c.system_type_id = ty.system_type_id
    where t.name = 'A'
    and ty.name not in ('text', 'ntext', 'xml', 'image')
    for xml path(''))
, 1, 2, '');

然后运行查询:

declare @sql nvarchar(max);
set @sql = 'select ' + @columns + ', ''table a first'' as where_missing from A';
exec (@sql);
于 2013-04-29T10:42:12.630 回答