over 9 years ago
To return the number of rows in a query,we use COUNT. It counts the numbers of records.
the syntax of SQL COUNT statement.
SQL SELECT COUNT(column_name)
It will return the total number of names of employee_table. But null fields will not be counted.
SQL SELECT COUNT(*)
used to return the number of records in table.
0 Comment(s)