From 562092a85fad631fe6dfdbf1db7ffe702987cd71 Mon Sep 17 00:00:00 2001 From: Nanos Giorgos <74103191+Nanos1@users.noreply.github.com> Date: Fri, 13 Sep 2024 09:58:03 +0200 Subject: [PATCH] Create concat ws.sql --- .../String Concatenation and Aggregation in SQL/concat ws.sql | 1 + 1 file changed, 1 insertion(+) create mode 100644 sql-queries-5/String Concatenation and Aggregation in SQL/concat ws.sql diff --git a/sql-queries-5/String Concatenation and Aggregation in SQL/concat ws.sql b/sql-queries-5/String Concatenation and Aggregation in SQL/concat ws.sql new file mode 100644 index 00000000..4cfbe75e --- /dev/null +++ b/sql-queries-5/String Concatenation and Aggregation in SQL/concat ws.sql @@ -0,0 +1 @@ +USE University; SELECT CONCAT_WS(' - ', name, textbook) AS course_details FROM Course;