Skip to content

Commit f919d50

Browse files
authored
docs: update readme to lc problem: No.0175 (#590)
1 parent 4a3b4f3 commit f919d50

File tree

1 file changed

+0
-29
lines changed

1 file changed

+0
-29
lines changed

solution/0100-0199/0175.Combine Two Tables/README_EN.md

-29
Original file line numberDiff line numberDiff line change
@@ -6,74 +6,45 @@
66

77
<p>Table: <code>Person</code></p>
88

9-
10-
119
<pre>
1210

1311
+-------------+---------+
14-
1512
| Column Name | Type |
16-
1713
+-------------+---------+
18-
1914
| PersonId | int |
20-
2115
| FirstName | varchar |
22-
2316
| LastName | varchar |
24-
2517
+-------------+---------+
2618

2719
PersonId is the primary key column for this table.
2820

2921
</pre>
3022

31-
32-
3323
<p>Table: <code>Address</code></p>
3424

35-
36-
3725
<pre>
3826

3927
+-------------+---------+
40-
4128
| Column Name | Type |
42-
4329
+-------------+---------+
44-
4530
| AddressId | int |
46-
4731
| PersonId | int |
48-
4932
| City | varchar |
50-
5133
| State | varchar |
52-
5334
+-------------+---------+
5435

5536
AddressId is the primary key column for this table.
5637

5738
</pre>
5839

59-
60-
61-
<p>&nbsp;</p>
62-
63-
64-
6540
<p>Write a SQL query for a report that provides the following information for each person in the Person table, regardless if there is an address for each of those people:</p>
6641

67-
68-
6942
<pre>
7043

7144
FirstName, LastName, City, State
7245

7346
</pre>
7447

75-
76-
7748
## Solutions
7849

7950
<!-- tabs:start -->

0 commit comments

Comments
 (0)