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