Multiple choice technology databases

What does the FROM SQL keyword specify?

  1. The FROM SQL keyword specifies a column list

  2. The FROM SQL keyword specifies a search condition.

  3. The FROM SQL keyword specifies the tables, views, and joined tables used in SELECT, UPDATE and DELETE SQL statements.

  4. The FROM SQL keyword specifies a find condition.

Reveal answer Fill a bubble to check yourself
C Correct answer
Explanation

The FROM keyword in SQL identifies the source tables, views, or joined tables from which data is retrieved or modified. Distractors are incorrect because column lists are specified by SELECT, search conditions are defined by WHERE, and there is no standard "find condition" keyword in SQL.