From 67d64e5ef7678c23e25a9d1badc6b9634ff0171d Mon Sep 17 00:00:00 2001 From: Nanos Giorgos <74103191+Nanos1@users.noreply.github.com> Date: Fri, 13 Sep 2024 10:01:25 +0200 Subject: [PATCH] Create string agg.sql --- .../String Concatenation and Aggregation in SQL/string agg.sql | 1 + 1 file changed, 1 insertion(+) create mode 100644 sql-queries-5/String Concatenation and Aggregation in SQL/string agg.sql diff --git a/sql-queries-5/String Concatenation and Aggregation in SQL/string agg.sql b/sql-queries-5/String Concatenation and Aggregation in SQL/string agg.sql new file mode 100644 index 00000000..897ead4b --- /dev/null +++ b/sql-queries-5/String Concatenation and Aggregation in SQL/string agg.sql @@ -0,0 +1 @@ +USE University; SELECT STRING_AGG(name, ', ') AS student_names FROM Student;