M
Meleah
I'm writing a simple SQL query utilizing Access.
SELECT Project.pnumber, Project.pname,
Count(Works_On.pno) AS [count]
FROM Project, Works_On
WHERE (((Project.pnumber)=[Works_On].[pno]))
GROUP BY Project.pnumber, Project.pname, 'count';
Is is possible to suppress the column headings from the
query results? If so, how? I'd also like to be able to
do this without using forms if at all possible.
-- Meleah
SELECT Project.pnumber, Project.pname,
Count(Works_On.pno) AS [count]
FROM Project, Works_On
WHERE (((Project.pnumber)=[Works_On].[pno]))
GROUP BY Project.pnumber, Project.pname, 'count';
Is is possible to suppress the column headings from the
query results? If so, how? I'd also like to be able to
do this without using forms if at all possible.
-- Meleah