diff --git a/sql-queries-5/String Concatenation and Aggregation in SQL/SQL operator.sql b/sql-queries-5/String Concatenation and Aggregation in SQL/SQL operator.sql new file mode 100644 index 00000000..48c24d38 --- /dev/null +++ b/sql-queries-5/String Concatenation and Aggregation in SQL/SQL operator.sql @@ -0,0 +1 @@ +USE University; SELECT name || ' (' || code || ')' AS department_info FROM Department;