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)
这到底是怎么表达的啊???求详细,求解释。。 展开
而有些语句是这样的select a.sno,a.sname from (select xxx from table x)
这到底是怎么表达的啊???求详细,求解释。。 展开
展开全部
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
(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
展开全部
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表里查询数据
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
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
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
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
第一个主查A表,但是需要B表中个别字段
第二个先查询X表获取一张新表,在对新表查询。
明白?
第二个先查询X表获取一张新表,在对新表查询。
明白?
追问
不明白,,,
追答
第一个不明白 还是第二个 还是两个?
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询