How to run SQL query group by issue?

前端 未结 2 609
野趣味
野趣味 2021-01-24 03:05

I have a table with columns :

Table Name: IdentityTable

ID         Dest_Name       Dest_Reference_Id         Format        IG

31231231    India                  


        
2条回答
  •  感情败类
    2021-01-24 03:45

    count(*) over(partition by dest_name, dest_reference_id)
    

    and without a group by. google "oracle analytic functions".

提交回复
热议问题