SQL Server 多表查询

暗香疏影 创作者

前几天开始研究维护SQL Server,因为学校自己的教育系统非常烂,而且他们公司维护客服也非常坑爹。所以我就开始研究自己维护SQL Server而不是一有事情就找他们付费弄。

SQL 基本多表查询

数据库来源: MSDN GitHub AdventureWorks2017

1
2
3
4
Select a.BusinessEntityID,b.EmailAddress,c.FirstName,c.LastName,a.JobTitle,d.PhoneNumber
FROM [AdventureWorks2017].[HumanResources].[Employee] as a,[AdventureWorks2017].[Person].[EmailAddress] as b, [AdventureWorks2017].[Person].[Person] as c,[AdventureWorks2017].[Person].[PersonPhone] as d
WHERE a.BusinessEntityID = b.BusinessEntityID and b.BusinessEntityID = c.BusinessEntityID and c.BusinessEntityID = d.BusinessEntityID
Order by BusinessEntityID
  • 标题: SQL Server 多表查询
  • 作者: 暗香疏影
  • 创建于 : 2019-05-21 00:00:00
  • 更新于 : 2019-05-21 00:00:00
  • 链接: https://blog.23ikr.com/2019/05/21/2019-05-21-SQL-Multiple-Table-Search/
  • 版权声明: 本文章采用 CC BY-NC-SA 4.0 进行许可。
评论
目录
SQL Server 多表查询