Multiple choice technology databases

Which SQL statement is used to extract data from a database?

  1. OPEN

  2. EXTRACT

  3. SELECT

  4. GET

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

SELECT is the fundamental SQL statement for retrieving data from databases. It specifies which columns to fetch and from which table. Options A (OPEN), B (EXTRACT - not a data retrieval verb in SQL), and D (GET) are not valid SQL statements for querying data.