From 84e5dc43b18d1f6c9521ca2dbe17f3b3bb9659cd Mon Sep 17 00:00:00 2001 From: Nanos Giorgos <74103191+Nanos1@users.noreply.github.com> Date: Fri, 13 Sep 2024 09:59:25 +0200 Subject: [PATCH] Create isnull.sql --- .../String Concatenation and Aggregation in SQL/isnull.sql | 1 + 1 file changed, 1 insertion(+) create mode 100644 sql-queries-5/String Concatenation and Aggregation in SQL/isnull.sql diff --git a/sql-queries-5/String Concatenation and Aggregation in SQL/isnull.sql b/sql-queries-5/String Concatenation and Aggregation in SQL/isnull.sql new file mode 100644 index 00000000..875ce998 --- /dev/null +++ b/sql-queries-5/String Concatenation and Aggregation in SQL/isnull.sql @@ -0,0 +1 @@ +USE University; SELECT ISNULL(textbook, 'No textbook assigned') + ' for ' + ISNULL(name, 'Unknown Course') AS course_description FROM Course;