-2

SELECTそれぞれを手動で実行するのではなく、以下のクエリを1つのクエリにアセンブルするクエリを作成するのに少し問題があります。これにより、CSVファイルをより簡単かつ迅速に作成できます。

select top 200 * from dbo.abacus where  type =  'A'
select top 200 * from dbo.abacus where  type =  'B'
select top 200 * from dbo.abacus  where type =  'E'
select top 200 * from dbo.abacus  where type =  'F'
select top 200 * from dbo.abacus  where type =  'F'
select top 200 * from dbo.abacus  where type =  'FX'
select top 200 * from dbo.abacus  where type =  'E'
4

2 に答える 2

1
select top 200 * from dbo.abacus where type = 'a'
union 
select top 200 * from dbo.abacus where type = 'b'

詳細はこちら http://msdn.microsoft.com/en-us/library/ms180026(v=sql.100).aspx

于 2012-12-03T16:40:35.637 に答える
0

試してみてくださいUNION

select top 200 * from dbo.abacus where  type =  'A'
union
select top 200 * from dbo.abacus where  type =  'B'
union
select top 200 * from dbo.abacus  where type =  'E'
union
select top 200 * from dbo.abacus  where type =  'F'
union
select top 200 * from dbo.abacus  where type =  'F'
union
select top 200 * from dbo.abacus  where type =  'FX'
union
select top 200 * from dbo.abacus  where type =  'E'
于 2012-12-03T16:38:14.967 に答える