我想不通:我有一个名为 ImportaRecords 的表,其中包含市场、zip5、MHI、MHV、TheTable 等字段,我想按 zip5 对所有具有 TheTable = 'mg' 的记录进行分组......我试过这个:
select a.Market,a.zip5,count(a.zip5),a.MHI,a.MHV,a.TheTable from
(select * from ImportantaRecords where TheTable = 'mg') a
group by a.Zip5
但它给了我一个没有聚合函数的经典错误
然后我尝试了这个:
select Market,zip5,count(zip5),MHI,MHV,TheTable from ImportantaRecords where TheTable = 'mg'
group by Zip5
和同样的事情......</p>
有什么帮助吗?