KnowledgeBoat Logo

Informatics Practices

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

SQL Queries

1 Like

Answer

SELECT CONCAT(NAME, JOBTYPE)
FROM EMPL;

Answered By

3 Likes


Related Questions