這是我使用的SQL查詢我需要拿起最高計數
select distinct d.npa, n.time_zone, count(n.time_zone) as tz_count
from #duplicates d
inner join psi.npanxx n
on d.npa = n.npa
where n.time_zone is not null and n.time_zone <> '0'
group by --d.npanxx_row_id, d.npa, n.time_zone
order by npa
我得到的結果是這樣的
npa time_zone tz_count
208 5 10600
208 4 31300
219 6 7882
219 9 7446
,我只需要最高計數得到如此它看起來像這樣
npa time_zone tz_count
208 5 10600
219 6 7882
如果有我可以使用,請讓我知道的任何功能。 非常感謝您的幫助。
選擇MAX(列) –
我可以問你正在嘗試做什麼? –
請使用您正在使用的數據庫標記您的問題 –