我在创建查询以将SELECT以下查询组合成一个查询而不是手动运行每个查询时遇到了一点问题。这有助于我自己更轻松快捷地创建 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'