1
Reply

what is the difference between count(*) and count(1) ?

Pradeep

Pradeep

15y
13.2k
0
Reply

    Difference between count(*) and count(1):-
    1.count(*)will be count the no of records in field and count(1)will be count the only one record field
    2.The difference is count(1) is faster than count(*).