From c1389d4a4322e644e65ec600eceb986576269136 Mon Sep 17 00:00:00 2001 From: Nanos Giorgos <74103191+Nanos1@users.noreply.github.com> Date: Fri, 13 Sep 2024 09:55:54 +0200 Subject: [PATCH] Create SQL operator.sql --- .../String Concatenation and Aggregation in SQL/SQL operator.sql | 1 + 1 file changed, 1 insertion(+) create mode 100644 sql-queries-5/String Concatenation and Aggregation in SQL/SQL operator.sql 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;