How it looks like

Report a typo

Select all the properly styled SQL queries.

a)

SELECT full_name, salary, department FROM staff WHERE badge_id = 1453;

b)

SELECT 
    full_name, 
    salary, 
    department 
FROM 
    staff 
WHERE 
    badge_id = 1453; 

c)

SELECT 
full_name, salary, department FROM 
staff 
WHERE 
badge_id = 1453; 
Select one or more options from the list
___

Create a free account to access the full topic