I have created an oracle query like as shown below,the query is working fine but the problem is that I want one more column which is the count of name where category should be A and id should be 1
SELECT name, velocity, COUNT(*) AS count, category FROM section GROUP BY name, velocity
Can anyone please tell me some solution for this