--SELECT title, title_no FROM library.dbo.title; --SELECT CONCAT('The title is: ', title, ', title number: ', title_no, '.') FROM library.dbo.title; SELECT CONCAT('The title is: ', title, ', title number: ', CONVERT(char, title_no), '.') FROM library.dbo.title;