Database 2504. Concatenate the Name and the Profession ¶ SQL 1 2 3 4 5SELECT person_id, CONCAT(name, '(', LEFT(profession, 1), ')') name FROM Person ORDER BY 1 DESC; Was this page helpful? Thanks for your feedback! Thanks for your feedback! Help us improve this page by using our feedback form.