Difference between count(1) and count(*) in sql
Team,
OS = Linux As 4
DB = 10.2.0.5.0
Could you please tell me the exact difference between below statement in terms of performance ?
SQL> select count(1) from NUR;
COUNT(1)
----------
272242796
SQL> select count(*) from NUR;
COUNT(*)
----------
272242796
SQL> select count(0) from NUR;
COUNT(0)
----------
272242796
Thanks,
Harry
0