From 88e6caec5d02d1f9f9410ba5cf6ea111f5eb2424 Mon Sep 17 00:00:00 2001 From: liujiayu03 <15822882820@163.com> Date: Mon, 3 Aug 2020 20:05:51 +0800 Subject: [PATCH] leetcode 0175 --- solution/0100-0199/0175.Combine Two Tables/Solution.sql | 1 + 1 file changed, 1 insertion(+) create mode 100644 solution/0100-0199/0175.Combine Two Tables/Solution.sql diff --git a/solution/0100-0199/0175.Combine Two Tables/Solution.sql b/solution/0100-0199/0175.Combine Two Tables/Solution.sql new file mode 100644 index 0000000000000..9efead68274a7 --- /dev/null +++ b/solution/0100-0199/0175.Combine Two Tables/Solution.sql @@ -0,0 +1 @@ +select p.FirstName, p.LastName, a.City, a.State from Person p left join Address a on p.PersonId = a.PersonId;