Count() Function In SQL
Count()
Count Function in SQl Is Used To Just
Count The Number Of row in Table
IN SqL COUNT() function IS Used To returning the number of rows that matches a specified
criteria
Count()Syntax- The Basic Syntax for Count Function are As follows
SQL>SELECT COUNT(column_name) FROM
table_name WHERE condition;
EXAMPLE-
SQL>SELECT COUNT(RollNo) FROM Student;
0 Comments