From 31e9b9ce8a1096cafd64eb62f13d5f2c8ef64c60 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jos=C3=A9=20Antonio=20Chac=C3=B3n=20Guti=C3=A9rrez?= <138903866+joseantoniochacon@users.noreply.github.com> Date: Tue, 25 Jun 2024 19:08:51 -0600 Subject: [PATCH] Time: 353 ms (92.74%), Space: 0B (100.00%) - LeetHub --- 0175-combine-two-tables/0175-combine-two-tables.sql | 2 ++ 1 file changed, 2 insertions(+) create mode 100644 0175-combine-two-tables/0175-combine-two-tables.sql diff --git a/0175-combine-two-tables/0175-combine-two-tables.sql b/0175-combine-two-tables/0175-combine-two-tables.sql new file mode 100644 index 0000000..7eb1011 --- /dev/null +++ b/0175-combine-two-tables/0175-combine-two-tables.sql @@ -0,0 +1,2 @@ +# Write your MySQL query statement below +SELECT Person.firstName, Person.lastName, Address.city, Address.state FROM Person LEFT JOIN Address ON Person.personId = Address.personId; \ No newline at end of file