SQL COUNT()

COUNT function is an arithmetic function in SQL.It is used to COUNT up the number of rows in a certain column of a table.


SYNTAX:
 COUNT(column_name)  

Table Name 'customers'

id

name

age

city

bill

1Tom34Paris5300
2Jhony51London 400
3Ram64Delhi20000.7
4Simon23Portland32.65



Online Execute/Compile