SQL中select带括号语句怎么表达?11
发布网友
发布时间:2023-10-21 16:05
我来回答
共4个回答
热心网友
时间:2024-11-24 12:30
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
热心网友
时间:2024-11-24 12:31
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表里查询数据
热心网友
时间:2024-11-24 12:31
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
热心网友
时间:2024-11-24 12:32
第一个主查A表,但是需要B表中个别字段
第二个先查询X表获取一张新表,在对新表查询。
明白?追问不明白,,,
追答第一个不明白 还是第二个 还是两个?