The code for fullName.sql is: SELECT #CONCAT_WS(', ', lastName, firstname) AS fullName CONCAT(lastName, ', ', firstname) AS fullName FROM employees;