powerprinting
MIS
I have a simple query....
SELECT make, COUNT(make)as quantity;
FROM master;
INTO CURSOR TMP1
But If I want at the same time, the total percent of the quantity of make against records in the database IE: count(make)/reccount().
What can I add to this syntax Or do I have to run a second query against the first one once the quantity is known?
Thanks
SELECT make, COUNT(make)as quantity;
FROM master;
INTO CURSOR TMP1
But If I want at the same time, the total percent of the quantity of make against records in the database IE: count(make)/reccount().
What can I add to this syntax Or do I have to run a second query against the first one once the quantity is known?
Thanks