diff --git a/sql-queries-5/String Concatenation and Aggregation in SQL/listagg.sql b/sql-queries-5/String Concatenation and Aggregation in SQL/listagg.sql new file mode 100644 index 00000000..5a8e4dab --- /dev/null +++ b/sql-queries-5/String Concatenation and Aggregation in SQL/listagg.sql @@ -0,0 +1 @@ +USE University; SELECT LISTAGG(name, ', ') WITHIN GROUP (ORDER BY name) AS student_names FROM Student;