We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4bd7200 commit 6ecd618Copy full SHA for 6ecd618
scripts/database/C/Combine Two Tables/Combine Two Tables.sql
@@ -1,3 +1,3 @@
1
-- Runtime: 356 ms (Top 83.54%) | Memory: 0B (Top 100.00%)
2
-ELECT p.firstName, p.lastName, a.city, a.state FROM Person p --accessing first hench LEFT
3
-LEFT JOIN Address a USING (personId) -- accessing second hence RIGHT. but we want every row in person so LEFT JOIN.
+SELECT p.firstName, p.lastName, a.city, a.state FROM Person p --accessing first hench LEFT
+LEFT JOIN Address a USING (personId) -- accessing second hence RIGHT. but we want every row in person so LEFT JOIN.
0 commit comments