QuestionQ8

Database Interaction

In an SQL SELECT statement, what does the LIMIT function restrict?

  • A The number of queries that can be run against the table per second.
  • B The number of records a table is permitted to hold.
  • C The number of records that will be returned by a request.
  • D The number of subsequent SELECT statements that can be run against the table
Explanation

LIMIT restricts the maximum number of records (rows) returned by a SELECT request.

Community Discussion

No comments yet. Be the first to start the discussion!