K
krishjaya
I have to use large volume SQL DB.
My Table name is 'Customer' and has 52 fields with heavy data.
Which SQL command is more fast? & why?
1. SELECT COUNT (*) FROM Customer WHERE CustId =
'1212322321313';
2. SELECT COUNT ( CustId ) FROM Customer WHERE CustId =
'1212322321313';
Thanx
My Table name is 'Customer' and has 52 fields with heavy data.
Which SQL command is more fast? & why?
1. SELECT COUNT (*) FROM Customer WHERE CustId =
'1212322321313';
2. SELECT COUNT ( CustId ) FROM Customer WHERE CustId =
'1212322321313';
Thanx