Query Editor
Write your SQL query here and use lightweight syntax checks.
Loading SQL editor...
Correct QuerySQL
SELECT id, name
FROM employees;Explanation
This is the most basic read query. It is a good reminder that in interviews you should select only the columns you really need instead of using SELECT * by default.