LeetCode SQL: Combine Two Tables
时间:2015-01-23 00:36:13
收藏:0
阅读:308
SELECT FirstName, LastName, City, State FROM Person p LEFT JOIN Address a ON p.PersonId = a.PersonId
居然出SQL的题目了,左连接就行
原文:http://www.cnblogs.com/lailailai/p/4243017.html
评论(0)