Computer Science, asked by hdjaidi108, 16 hours ago

a) What is the difference between count and count(*)?.​

Answers

Answered by sharikhzeba1
1

Answer:

Difference between count(*) and count(columnName) in MySQL? The count(*) returns all rows whether column contains null value or not while count(columnName) returns the number of rows except null rows.

Similar questions