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;