EasyOutput prediction

Column alias with AS

Given this table (employees):

idnamesalary
1Alice90000

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.