This repository has been archived on 2024-12-14. You can view files and clone it, but cannot push or open issues or pull requests.
Files
Databases/Lab1/Task2/SQLQuery10.sql

3 lines
261 B
SQL

--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;