CBSE Class 12 Informatics Practices Question 79 of 81

MySQL Functions — Question 9

Back to all questions
9
Question

Question 9

Write a query against the EMPL table to show the names of all employees concatenated with their jobtypes.

Answer
SELECT CONCAT(NAME, JOBTYPE)
FROM EMPL;