EasyOutput prediction
Column alias with AS
Given this table (employees):
| id | name | salary |
|---|---|---|
| 1 | Alice | 90000 |
What value does this query return?
SELECT salary * 1.1 AS new_salary FROM employees WHERE id = 1;
← → arrow keys to navigate
Sign in to save your progress.