Database Help
 
Forums: » Register « |  User CP |  Games |  Calendar |  Members |  FAQs |  Sitemap |  Support | 
User Name:
Password:
Remember me
Go Back   Codewalkers ForumsOther TechnologiesDatabase Help

Reply
Add This Thread To:
  Del.icio.us   Digg   Google   Spurl   Blink   Furl   Simpy   Y! MyWeb 
Thread Tools Search this Thread Rate Thread Display Modes
 
Unread Codewalkers Forums Sponsor:
Stay one step ahead of the competition. Evaluate and give feedback on some of the hottest web development tools on the market today. Make your opinion heard! Click Here
  #1  
Old May 21st, 2003, 04:14 PM
dubelclique dubelclique is offline
Codewalkers Newbie (0 - 499 posts)
 
Join Date: Apr 2007
Posts: 1 dubelclique User rank is Just a Lowly Private (1 - 20 Reputation Level) 
Time spent in forums: < 1 sec
Reputation Power: 0
Send a message via AIM to dubelclique
SELECT COUNT() question

I'm trying to count non-blank rows in a table, and everything I've found points to using a

SELECT COUNT(fieldName) FROM databaseName

query. Can someone tell me how to return the value I'm looking for (the number of non-blank records for that particular field)?

Thanks,
--Joe

Reply With Quote
  #2  
Old May 21st, 2003, 05:06 PM
brut brut is offline
Codewalkers Newbie (0 - 499 posts)
 
Join Date: Apr 2007
Posts: 367 brut User rank is Just a Lowly Private (1 - 20 Reputation Level) 
Time spent in forums: < 1 sec
Reputation Power: 2
RE: SELECT COUNT() question

This should work. If you don't allow NULLs replace it with the default value.
php Code:
Original - php Code
  1.  
  2. SELECT COUNT(fieldName) FROM databaseName WHERE fieldName != 'NULL';

Reply With Quote
  #3  
Old May 21st, 2003, 05:58 PM
honcho's Avatar
honcho honcho is offline
Contributing User
Codewalkers Beginner (1000 - 1499 posts)
 
Join Date: Apr 2007
Location: Cape Cod
Posts: 1,347 honcho User rank is Just a Lowly Private (1 - 20 Reputation Level) 
Time spent in forums: 3 h 52 m 2 sec
Reputation Power: 3
RE: SELECT COUNT() question

SELECT COUNT(fieldName) FROM databaseName WHERE fieldName IS NULL;

and

SELECT COUNT(fieldName) FROM databaseName;

should return the same number since COUNT() only counts non-NULL values.

The reason this might not work for you is that NULL and blank can be different. In that case, change the WHERE cluase to be something like LENGTH(fieldName) > 0

Reply With Quote
Reply

Viewing: Codewalkers ForumsOther TechnologiesDatabase Help > SELECT COUNT() question


Thread Tools  Search this Thread 
Search this Thread:

Advanced Search
Display Modes  Rate This Thread 
Rate This Thread:


Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

vB code is On
Smilies are On
[IMG] code is On
HTML code is Off
View Your Warnings | New Posts | Latest News | Latest Threads | Shoutbox
Forum Jump


Forums: » Register « |  User CP |  Games |  Calendar |  Members |  FAQs |  Sitemap |  Support | 
  
 





© 2003-2008 by Developer Shed. All rights reserved. DS Cluster 2 hosted by Hostway