Difficulty: Easy
Correct Answer: SELECT
Explanation:
Introduction / Context:
The most common SQL operation is reading data. Knowing the precise keyword that initiates a query helps differentiate between standard SQL and vendor-specific commands, and avoids confusion with cursor operations or procedural code.
Given Data / Assumptions:
Concept / Approach:
The SELECT statement projects columns, filters rows, groups, aggregates, and joins tables to produce a relational result set. Other words like READ or QUERY are English descriptions, not SQL keywords. FETCH exists but is used with cursors to retrieve the next row from an already opened result set, not to issue the initial query.
Step-by-Step Solution:
Verification / Alternative check:
Every SQL reference begins with the SELECT statement to demonstrate data retrieval operations.
Why Other Options Are Wrong:
Common Pitfalls:
Final Answer:
SELECT
Discussion & Comments