select *
   from Quote
   where name = 'xxx'
   or name = 'yyy'
   or name = 'zzz'
     order by name
   compute count(*) by name在后台代码中执行了以上语句后就会根据分组统计出结果,我现在是想要获取统计值的数据,在代码中怎么写?
用DataSet可以么?