oracle 3表联查怎么查
假设表A中需要的字段是date,ID,cust_id(cust_id对应B表的cust_id),B表中要取得字段是OB_ID和cust_id,(OB_ID对应的是C表中的...
假设表A中需要的字段是date,ID,cust_id(cust_id对应B表的cust_id), B表中要取得字段是OB_ID和cust_id,(OB_ID对应的是C表中的TASK_ID)C表中要取得字段是TASK_ID。这个3表查询的SQL应该怎么写
展开
3个回答
展开全部
他们写的都没错,但是在存储过程中为了能显示他们的逻辑性我一般这么写:
select a.date,a.Id,a.cust_id,b.ob_id,b.cust_id,c.task_id
from a
join b on a.cust_id=b.cust_id
join c on b.ob_id=c.task_id;
这样写还有一个好处是如果后面还有条件比如where cust_id=10 这样让别人看的更清晰。也方便以后优化
select a.date,a.Id,a.cust_id,b.ob_id,b.cust_id,c.task_id
from a
join b on a.cust_id=b.cust_id
join c on b.ob_id=c.task_id;
这样写还有一个好处是如果后面还有条件比如where cust_id=10 这样让别人看的更清晰。也方便以后优化
追问
我按照你的写下去怎么说是缺少表达式啊
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
select a.date,a.id.a.cust_id,b.ob_id,c.task_id
from a,b,c
where a.cust_id=b.cust_id and b.ob_id=c.task_id;
from a,b,c
where a.cust_id=b.cust_id and b.ob_id=c.task_id;
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
select a.date,a.Id,a.cust_id,b.ob_id,b.cust_id,c.task_id
from a,b,c
where a.cust_id=b.cust_id and b.ob_id=c.task_id
from a,b,c
where a.cust_id=b.cust_id and b.ob_id=c.task_id
本回答被提问者采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询