126k views
5 votes
Which of the following is a correct statement? a. The INCLUDE NULLS keywords can be included in the argument for the COUNT function to include NULL values in the results. b. The NULL keyword can be included in the argument of the COUNT function to include NULL values in the results. c. An asterisk can be used as the argument for the COUNT function to include NULL values in the results. d. The ALL keyword can be included in the argument of the COUNT function to include NULL values in the results.

1 Answer

4 votes

Answer:

C

Step-by-step explanation:

Count function by default will give all the records including null

example:

select count(*) from employee

Answer is C

User Achronos
by
5.8k points