什么是左连接,右连接和完全连接??如下:
select * from testdata!customer;
left outer join testdata!orders;
on customer.cust_id=orders.cust_id
如果是左连接该命令将返回
join
左侧表
(customer)
中的所有记录以及右侧表中匹配的记录;右连接则反之,返回
orders
中所有记录和
customer
的匹配记录;完全连接返回两个表中的所有记录。
右连接说明等号右侧的所有记录均会被显示,无论其在左侧是否得到匹配,