Informatics Practices

Fill in the Blank

The COUNT(*) function provides the total number of …………… within a relation (table) in a relational database.

  1. Columns
  2. Unique values
  3. Not-null values
  4. Rows

SQL Joins & Grouping

1 Like

Answer

Rows

Reason — The COUNT(*) function provides the total number of rows within a relation (table) in a relational database. It counts all rows, including duplicates and NULL values.

Answered By

1 Like


Related Questions