vote up 4 vote down star
2

When we execute select count(*) from table_name it returns the number of rows.

What does count(1) do? What does 1 signifies over here? Is this same as count(*) as it gives the same result on execution?

flag

60% accept rate
Interesting question. I'd also be interested in whether the answer is implementation-dependent (e.g. whether the result of the query is the same in SQL Server as it is in Oracle). – Jon Schneider Oct 8 '08 at 3:57

9 Answers

vote up 18 vote down check

The parameter to the COUNT function is an expression that is to be evaluated for each row. The COUNT function returns the number of rows for which the expression evaluates to a non-null value. ( * is a special expression that is not evaluated, it simply returns the number of rows.)

There are two additional modifiers for the expression: ALL and DISTINCT. These determine whether duplicates are discarded. Since ALL is the default, your example is the same as count(ALL 1), which means that duplicates are retained.

Since the expression "1" evaluates to non-null for every row, and since you are not removing duplicates, COUNT(1) should always return the same number as COUNT(*).

link|flag
vote up 0 vote down

in oracle i believe these have exactly the same meaning

link|flag
Does the 1 refer to column one? – dacracot Oct 8 '08 at 3:56
no, 1 refers to the constant number 1. When you say, ORDER BY 1, it refers to column one. – Thilo Oct 8 '08 at 3:57
that's what I wondered a while back, but you can specify any number which is greater than the column count, still the result is same. So its definitely not column number. – Nrj Oct 8 '08 at 3:58
@dacracot: it may but i don't believe so. From what i understand oracle just re-writes count(1) to be count(*) in the background – Jarod Elliott Oct 8 '08 at 3:58
vote up 1 vote down

This is similar to the difference between SELECT * FROM table_name and SELECT 1 FROM table_name. If you do SELECT 1 FROM table_name it will give you the number 1 for each row in the table. So yes count(*) and count(1) will provide the same results as will count(8) or count(column_name)

link|flag
count(column_name) is not quite the same - it doesn't count rows with null in that column. See here for details: stackoverflow.com/questions/169784 – Blorgbeard Oct 8 '08 at 4:19
Hmm, actually that's for SQL Server. Oracle may work differently I suppose. – Blorgbeard Oct 8 '08 at 4:21
Count should never use NULL values as per standard SQL, ORacle and SQL Server should have the same behaviour in this regard. – IronGoofy Oct 8 '08 at 4:58
"similar to the difference between SELECT * FROM table_name and SELECT 1 FROM table_name." -- not really. SELECT * and SELECT 1 are different. SELECT (*) and SELECT (1) give the same result. – David Aldridge Oct 8 '08 at 13:38
vote up 3 vote down

There is no difference.

COUNT(1) is basically just counting a constant value 1 column for each row. As other users here have said, it's the same as COUNT(0) or COUNT(42). Any non-NULL value will suffice.

http://asktom.oracle.com/pls/asktom/f?p=100:11:2603224624843292::::P11_QUESTION_ID:1156151916789

The Oracle optimizer did apparently use to have bugs in it, which caused the count to be affected by which column you picked and whether it was in an index, so the COUNT(1) convention came into being.

link|flag
vote up 0 vote down

SELECT COUNT(1) should do the exact same thing as SELECT COUNT(*).

There may have been or still be some reasons why it would perform better than SELECT COUNT(*) on some database, but I would consider that a bug in the DB.

SELECT COUNT(col_name) however has a different meaning, as it counts only the rows with a non-null value for the given column.

link|flag
vote up 8 vote down

Here is a link that will help answer your questions. In short:

count(*) is the correct way to write it and count(1) is OPTIMIZED TO BE count(*) internally -- since

a) count the rows where 1 is not null is less efficient than
b) count the rows

link|flag
vote up -1 vote down

Depending on who you ask, some people report that executing select count(1) from random_table; runs faster than select count(*) from random_table. Others claim they are exactly the same.

This link claims that the speed difference between the 2 is due to a FULL TABLE SCAN vs FAST FULL SCAN.

link|flag
You're misinterpreting the link. LS is making the point that COUNT(COLUMN) can be the same as and faster than COUNT(*), but only when no NOT NULL columns are indexed but COLUMN is indexed and actually has no null values. More of a trick question. – David Aldridge Oct 8 '08 at 13:41
I was trying to use the link to document the claim that, in some circumstances, COUNT(1) could be faster than COUNT(*). Some earlier answers had made the statement that there were no differences between the 2, and I was providing a possible counter example. – Johann Zacharee Oct 8 '08 at 15:15
vote up 0 vote down

Hi all

Difference between count(*) and count(1) in oracle?

count(*) means it will count all records i.e each and every cell BUT

count(1) means it will add one pseudo column with value 1 and returns count of all records

link|flag
vote up 0 vote down

Why it not so clear, we all are confused. plz give proper answer?

link|flag

Your Answer

Get an OpenID
or

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