I am using Oracle 10g
I am executing select count(*) from emp ;
Emp table has millions of rows .
Could you please tell me which option is better.
Select count(1) from emp;
or
Select count(*) from emp;
And Why ...
I am executing select count(*) from emp ;
Emp table has millions of rows .
Could you please tell me which option is better.
Select count(1) from emp;
or
Select count(*) from emp;
And Why ...
Comment