Write a query against the EMPL table to show the names of all employees concatenated with their jobtypes.
SELECT CONCAT(NAME, JOBTYPE) FROM EMPL;