EasyOutput prediction
SELECT * vs named columns
Given this table (users):
| id | username | |
|---|---|---|
| 1 | alice | alice@example.com |
How many columns appear in the result of SELECT * FROM users WHERE id = 1?
SELECT * FROM users WHERE id = 1;
← → arrow keys to navigate
Sign in to save your progress.