From f7a56e6ee28956fb4017f23cedfd05cd1048688d Mon Sep 17 00:00:00 2001 From: Nanos Giorgos <74103191+Nanos1@users.noreply.github.com> Date: Fri, 13 Sep 2024 09:57:17 +0200 Subject: [PATCH] Create concat function.sql --- .../concat function.sql | 1 + 1 file changed, 1 insertion(+) create mode 100644 sql-queries-5/String Concatenation and Aggregation in SQL/concat function.sql diff --git a/sql-queries-5/String Concatenation and Aggregation in SQL/concat function.sql b/sql-queries-5/String Concatenation and Aggregation in SQL/concat function.sql new file mode 100644 index 00000000..dcac3fce --- /dev/null +++ b/sql-queries-5/String Concatenation and Aggregation in SQL/concat function.sql @@ -0,0 +1 @@ +USE University; SELECT CONCAT(name, ' (', code, ')') AS department_info FROM Department;