I have the following Query
The order By Count Does not work as it doesnt know what "Count" is.Code:SELECT Count(ra.ReliefCode) AS [Count], ra.ReliefCode FROM tblRelief_Allot AS ra GROUP BY ra.ReliefCode, ra.ReliefCode Order By [Count];
How Can I order By the count?