I'm wondering if its possible to count the records produced by a query within the same query?
SELECT HousesForRent.City
FROM HousesForRent
WHERE rooms >= 7
SELECT COUNT(rooms) AS seven_or_More
FROM HousesForRent
WHERE rooms >= 7;
I'v only managed to create it in another SELECT query.