Problem Statement
Which SQL statement retrieves all columns and rows from a table named employees?
Explanation
SELECT chooses columns and rows from one or more tables. The star is a shorthand for all columns.
In production, prefer listing columns to control payloads, avoid hidden schema breaks, and help indexes get used effectively.
Code Solution
SolutionRead Only
SELECT * FROM employees;
