You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

5 lines
252 B
SQL

/*8. Write a query in SQL to display the full name (first and last name), and salary for all employees who does not earn
any commission.*/
SELECT first_name ||' '||last_name AS Full_Name, salary
FROM employees
WHERE commission_pct IS NULL;