-
175. Combine Two Tables mysqlLeetCode_Study_Plan/SQL 2022. 9. 30. 14:37
https://leetcode.com/problems/combine-two-tables
select s.firstName, s.lastName, a.city, a.state from person s left join address a on s.personId = a.personId;
'LeetCode_Study_Plan > SQL' 카테고리의 다른 글
1148. Article Views I mysql (0) 2022.09.30 1581. Customer Who Visited but Did Not Make Any Transactions mysql (0) 2022.09.30 1795. Rearrange Products Table mysql (0) 2022.09.29 1965. Employees With Missing Information mysql (0) 2022.09.29 1527. Patients With a Condition mysql (0) 2022.09.27