Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

MySQL (table):

+----+------+
| id | text |
+----+------+
| 1  |      |
+----+------+
| 2  | blah |
+----+------+
| 3  |      |
+----+------+
| 4  | blah |
+----+------+
| 5  | blah |
+----+------+

PHP:

$a = mysql_query("SELECT COUNT(*) AS count1 FROM `table`");
$b = mysql_fetch_assoc($a);

echo $b['count1'];

Output:

5

However, I also want to count the text fields which are filled - within the same query, if possible.

Result:

5 in total
3 with filled text fields
share|improve this question
When there is a blank is it NULL or "" ? – Maxence SCHMITT Jan 18 '11 at 23:55

2 Answers

up vote 9 down vote accepted
SELECT COUNT(*) AS `total`, SUM(IF(`text` <> "",1,0)) AS `non_empty` FROM `table`
share|improve this answer
in my case I had to use '', but it works great. thanks alot! – user317005 Jan 18 '11 at 23:59
1  
+1 But, do you know how the query-plan for this stacks up vs. something like Charles's answer (is the sum smart enough to pull out to an index if possible, for instance)? What about using a union? – user166390 Jan 18 '11 at 23:59
1  
@pst This is probably a new question by itself. Honestly, I can only speculate. But since all conditions (except in HAVING) are optimized for indeces, I'd think indeces are used. Someone should probably just compare @Charles' query and mine... – Linus Kleen Jan 19 '11 at 0:06
I would also like to see a comparison, considering I have only taken an Oracle SQL 11g course at my community college. – Charles Ray Jan 19 '11 at 0:13
@pst @Charles I did the comparison and it turns out, that Charles' answer is actually the faster one. The subquery is optimized, whereas in my answer, the IF statement is not optimized and executed for each and every row to later sum up either 0 or 1 to the desired value. – Linus Kleen Jan 23 '11 at 22:36

This can be accomplished quite nicely with sub-queries.

SELECT COUNT(id) AS id, COUNT(SELECT text FROM 'table' WHERE text IS NOT NULL) AS t FROM 'table'

Note to self: start proofreading your work before submitting it.

share|improve this answer
1  
Please explain downvote. – Charles Ray Jan 18 '11 at 23:55
Downvote wasn't mine, but your original answer was wrong. You've since edited it though. – marcog Jan 18 '11 at 23:56
I gave you an upvote. But you have to promise that runs as advertised on MySQL (I don't use MySQL). Otherwise, give yourself two down-votes :p – user166390 Jan 18 '11 at 23:56
2  
Removed my downvote. The initial answer was just wrong, though. – Linus Kleen Jan 18 '11 at 23:58
1  
@Charles No problem. You even got a +1 from me for initiating some sort of speculation (see the comments on my answer). – Linus Kleen Jan 19 '11 at 0:07
show 2 more comments

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.