vote up 3 vote down star

Hi,

I am totally new to SQL. I have a simple select query similar to this:

SELECT COUNT(col1) FROM table1

There are some 120 records in the table and shown on the GUI. For some reason, this query always returns a number less than the actual count.

Can somebody please help me?

flag

3 Answers

vote up 12 vote down check

You might have some null values in col1 column. Aggregate functions ignore nulls. try this

SELECT COUNT(ISNULL(col1,0)) FROM   table1
link|flag
vote up 15 vote down

Try

select count(*) from table1

Edit: To explain further, count(*) gives you the rowcount for a table, including duplicates and nulls. count(isnull(col1,0)) will do the same thing, but slightly slower, since isnull must be evaluated for each row.

link|flag
vote up 0 vote down

Slightly tangential, but there's also the useful

SELECT count(distinct cola) from table1

which as you may surmise gives you number of distinct cola in the table

link|flag

Your Answer

Get an OpenID
or

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