C/C++教程

LeetCode数据库175 - 组合两个表 - left join + on的用法

本文主要是介绍LeetCode数据库175 - 组合两个表 - left join + on的用法,对大家解决编程问题具有一定的参考价值,需要的程序猿们随着小编来一起学习吧!

题目链接

https://leetcode-cn.com/problems/combine-two-tables/

题解

看LeetCode上的就行,很详细也有扩充。

AC代码

select FirstName, LastName, City, State
from Person left join Address
on Person.PersonId = Address.PersonId;

或者:(这个要慢11ms)

select FirstName, LastName, City, State
from Person as p
left join Address as a
on p.PersonId = a.PersonId;
这篇关于LeetCode数据库175 - 组合两个表 - left join + on的用法的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!