SQL中select带括号语句怎么表达? 100

为什么有些语句是selecta.sno,(selectxxxfromtablebwherea.sno=b.sno)fromtablea而有些语句是这样的selecta.s... 为什么有些语句是select a.sno,(select xxx from table b where a.sno=b.sno) from table a
而有些语句是这样的select a.sno,a.sname from (select xxx from table x)
这到底是怎么表达的啊???求详细,求解释。。
展开
 我来答
百度网友e3ce692
推荐于2017-05-21
知道答主
回答量:0
采纳率:0%
帮助的人:0
展开全部
select a.sno,(select xxx from table b where a.sno=b.sno) from table a里面
(select xxx from table b where a.sno=b.sno)是作为一个独立的显示的,你可以把它假设为out_name
即out_name是select xxx from table b where a.sno=b.sno;
总的是:select a.sno,out_name from table a;可以理解为先select xxx from table b where a.sno=b.sno,把它的结果和a.sno一起显示

select a.sno,a.sname from (select xxx from table x)里面,
把select xxx from table x查询的结果作为你个表(设为a_table),然后select a.sno,a.sname from a_table
hszxzhf
2014-10-28
知道答主
回答量:0
采纳率:0%
帮助的人:0
展开全部
select a.sno,
(select xxx from table b where a.sno=b.sno) 
from table a
--其实就是一个字段而已  上面的等同于下面的  
select a.sno
       xxx
From table a,table b
Where a.sno=b.sno


--第二个
select a.sno,
       a.sname 
from (select xxx from table x)b

--也就是把select xxx from table x得到的结果作为一个表,记为b
--然后从b表里查询数据
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
殇忄路
2014-10-28
知道答主
回答量:0
采纳率:0%
帮助的人:0
展开全部
1.
select a.sno,(select xxx from table b where a.sno=b.sno) from table a

这相当于一种连接方式,解析如下,a表等值连接b表
select a.sno,b.xxx from table a,table b where a.sno=b.sno;

2.
select a.sno,a.sname from (select xxx from table x)

这是一种子查询方式,解析:当直接从表里取数据时,不能得到想要的结果,就需要子查询来实现,把 (select xxx from table x)当做一个表来看
select a.sno,a.sname from (select xxx from table x) a
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
沙2011
2014-10-28
知道答主
回答量:0
采纳率:0%
帮助的人:0
展开全部
第一个主查A表,但是需要B表中个别字段
第二个先查询X表获取一张新表,在对新表查询。
明白?
追问
不明白,,,
追答
第一个不明白 还是第二个 还是两个?
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
收起 1条折叠回答
收起 更多回答(2)
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询
?>

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式