Which Of The Following Queries Returns The Number Of Records In #125
Which of the following queries returns the number of records in a table named hospital?
This multiple choice question (MCQ) is related to the book/course gs gs115 Structured Query Language. It can also be found in gs gs115 SQL Numeric Functions - SQL Count Function - Quiz No.1.
Which of the following queries returns the number of records in a table named hospital?
Select * count( ) From hospital;
Select count(1) From hospital;
Select count( ) 1 From hospital;
Select count( ) all From hospital;