标题:谈谈你对高级查询的理解
取消只看楼主
编程3869768
Rank: 1
等 级:新手上路
帖 子:55
专家分:0
注 册:2008-3-25
结帖率:100%
 问题点数:0 回复次数:0 
谈谈你对高级查询的理解
内连接查询
select ProductInfo.ProdID'生产号',ProductInfo.ProdName'产品

号',EmporiumSell.SellAmout'销售数量',EmporiumSell.SellDate'销售日

期',EmporiumInfo.EmpName'商场名称'
from ProductInfo inner join  EmporiumSell
on ProductInfo.ProdID=EmporiumSell.ProdID
join EmporiumInfo
on EmporiumInfo.EmpID=EmporiumSell.EmpID


外连接查询
select ProductInfo.ProdID'生产号',ProductInfo.ProdName'产品

号',EmporiumSell.SellAmout'销售数量',EmporiumSell.SellDate'销售日期'
from EmporiumSell left outer  join ProductInfo
on EmporiumSell.ProdID=ProductInfo.ProdID


交叉连接
select EmporiumSell.SellAmout'销售数量',EmporiumSell.SellDate'销售日期

',ProductInfo.ProdID'生产号',ProductInfo.ProdName'产品名'
from EmporiumSell cross join ProductInfo


合并结果集
select kecheng.KCMC'课程名称'
from kecheng
union
select BJ.BJMC'班级名称'
from BJ



这几天  都在研究这些连接的区别  
不是很了解
哪位能系统  言简意赅的谈谈你的理解
来解除菜鸟的困惑
搜索更多相关主题的帖子: 高级 查询 
2008-12-01 22:04



参与讨论请移步原网站贴子:https://bbs.bccn.net/thread-247259-1-1.html




关于我们 | 广告合作 | 编程中国 | 清除Cookies | TOP | 手机版

编程中国 版权所有,并保留所有权利。
Powered by Discuz, Processed in 0.093893 second(s), 8 queries.
Copyright©2004-2025, BCCN.NET, All Rights Reserved