This is my script
SELECT COUNT( [Id]) as [Count Of Register], Tag as [Tag] FROM [Members] Group By Tag Order By [Count Of Register] Desc;
The returned table looks like this:
Count Tag 550 ----1 550 ----2 545 ----3 545 ----4 545 ----5
So this time I need Count of Tag, Group using this new Count field.
Some return values ββLike:
2 ---550 3 ---545
Is there a way without using a new table or template table or any storage table only on request?
source share