I am running the following Query and was wonder how to add to this in order that I can display the first 3 and last 3 records.
SELECT house.P1, Count(*) AS EXPR
FROM house
GROUP BY house.P1
HAVING (((Count(*)+1)<>False))
ORDER BY Count(*);
Thanks to anyone that can help
SELECT house.P1, Count(*) AS EXPR
FROM house
GROUP BY house.P1
HAVING (((Count(*)+1)<>False))
ORDER BY Count(*);
Thanks to anyone that can help