Which SQL command is used to retrieve data from a database?
- INSERT
- UPDATE
- SELECT
- DELETE
Answer: SELECT
SELECT is the SQL command used to query and retrieve data from one or more tables. INSERT adds new records, UPDATE modifies existing records, and DELETE removes records. SELECT is the most frequently used command in database operations.