1
create table Employee(
id int identity(1,1) primary key,
Username varchar(50),
FirstName varchar(50),
LastName varchar(50),
DepartID int
)
create table Departments(
id int identity(1,1) primary key,
DepartmentName varchar(50)
)
兩個加入結果集是一樣的,我們得到Employee匹配和不匹配。是否加入訂單事項性能
Select * from Employee E
Left Join
Departments D
ON D.ID= E.DepartID
Select * from Departments D
Right Join Employee E
ON E.DepartID =D.ID
由於「左b」與「b右a」相同,所以應該沒有區別。 – dnoeth
使用的標記dbms。性能問題幾乎總是產品特定的! – jarlh