I am pulling through the latest five entries in a database. I also want to show the total number of entries beside this.

Currently I'm running two queries - the first, to get the latest five:

SELECT reference.id, reference.name
FROM reference
WHERE (status = 2 OR status = 3)
ORDER BY reference.date
LIMIT 5

The second, to count the total:

SELECT COUNT(reference.status) AS complete_count
FROM reference
WHERE (status = 2 OR status = 3)

Is there any way to join these two into one? When I try and add another column to the first query's output (the COUNT), it only returns one row.

Thanks!

link|improve this question

feedback

3 Answers

you can pull a sub select as the item so...

select foo, bar, (select count(*) from tableA) from tableA;

Keep in mind that depending on the complexity of the rest of the query this may be a fairly expensive select though.

link|improve this answer
feedback

Yes, few ways :-

select reference.id, reference.name, b.complete_count
FROM reference
JOIN
(
 SELECT COUNT(reference.status) AS complete_count
 FROM reference
 WHERE (status = 2 OR status = 3)
) as b
WHERE ...

This method is better as it do a count, then JOIN.

The another answer proposed is going to trigger the subquery for each row,
which is less ideal.

Or you can use http://dev.mysql.com/doc/refman/5.0/en/information-functions.html#function_found-rows (two queries)

link|improve this answer
feedback

This should give you what you're hoping for:

SELECT reference.id, reference.name, COUNT(1) AS complete_count
FROM reference
WHERE status = 2
   OR status = 3)
GROUP BY reference.id, reference.name
ORDER BY reference.date
LIMIT 5
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.