Query 1:
SELECT COUNT(1) FROM STUDENTS
Query 2:
SELECT COUNT(*) FROM STUDENTS
Both the queries return the same result, but is there any performance difference between these two ?
What I had heard is the first query would be faster than the second one, but can any one give specific details about it?