I Run this Query in VFP6.0 And It Returns the Two Columns but the Radius Column needs to be a whole number.
SELECT DISTINCT RADIUS,count(*)AS QUANTITY FROM rstemp group by RADIUS order by RADIUS
So..
I tried this and it give me an error.
SELECT DISTINCT CAST(RADIUS AS NUMERIC(10,0)),count(*)AS QUANTITY FROM rstemp group by CAST(RADIUS AS NUMERIC(10,0)) order by CAST(RADIUS AS NUMERIC(10,0))
Can anyone help?
SELECT DISTINCT RADIUS,count(*)AS QUANTITY FROM rstemp group by RADIUS order by RADIUS
So..
I tried this and it give me an error.
SELECT DISTINCT CAST(RADIUS AS NUMERIC(10,0)),count(*)AS QUANTITY FROM rstemp group by CAST(RADIUS AS NUMERIC(10,0)) order by CAST(RADIUS AS NUMERIC(10,0))
Can anyone help?