博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
LeeCode(Database)-Combine Two Tables
阅读量:6364 次
发布时间:2019-06-23

本文共 894 字,大约阅读时间需要 2 分钟。

Table: Person

+-------------+---------+| Column Name | Type    |+-------------+---------+| PersonId    | int     || FirstName   | varchar || LastName    | varchar |+-------------+---------+PersonId is the primary key column for this table.

Table: Address

+-------------+---------+| Column Name | Type    |+-------------+---------+| AddressId   | int     || PersonId    | int     || City        | varchar || State       | varchar |+-------------+---------+AddressId is the primary key column for this table.

 

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:

FirstName, LastName, City, State
1 SELECT Person.FirstName,Person.LastName,Address.City,Address.State2 FROM Person3 Left JOIN Address4 ON Person.PersonId=Address.PersonId

 

转载于:https://www.cnblogs.com/vpoet/p/4679602.html

你可能感兴趣的文章
杭电2120--Ice_cream's world I(并查集)
查看>>
雅虎前段优化35条
查看>>
(转)接口100
查看>>
mysql 优化攻略.来自github
查看>>
ThinkPHP5 将session保存到 mysql
查看>>
设计模式:灵活编程(装饰模式)
查看>>
单据号生成
查看>>
Count and Say leetcode
查看>>
简单易用的APP制作软件,KM盒子V6.3版发布
查看>>
Appium移动自动化测试之问题总结
查看>>
UIScrollView 大概是如何实现的,它是如何捕捉、响应手势的?
查看>>
wx-cli:简易微信小程序开发脚手架
查看>>
asp.net MVC中实现调取web api
查看>>
keepalived实现服务高可用
查看>>
iOS模型以及使用
查看>>
NSString 去除空格
查看>>
swift - 网络请求数据处理 - 协议处理
查看>>
[BZOJ1588]营业额统计(Splay)
查看>>
[BZOJ 4869][SHOI&SXOI2017]相逢是问候(扩展欧拉定理+线段树)
查看>>
2017-08-13
查看>>