gpt4 book ai didi

sql - 如何连接两个SELECT语句?

转载 作者:行者123 更新时间:2023-12-01 00:38:12 24 4
gpt4 key购买 nike

select * 
From
(
select *
from order
order by creationtime desc
)
where rownum=1 and creationtime='12-feb-2010';


select * 
from
(
select *
from
order by rate desc
)
where rownum<=2 and creationtim='12-dec-2011';

我想使用 SELECT加入这两个 JOIN查询。这两个 SELECT查询都从同一张表中查询。我不想使用 UNION

我怎样才能做到这一点?

最佳答案

很难从您的问题中看出以下“ON”子句中的所有内容,因为您没有指定主键,但是这应该使您对需要执行的操作有所了解。

select * From
(select * from order order by creationtime desc) A
INNER JOIN (select * from order by rate desc) B
ON A.rownum = B.rownum
where A.rownum=1 and A.creationtime='12-feb-2010'
AND B.rownum<=2 and B.creationtim='12-dec-2011'

关于sql - 如何连接两个SELECT语句?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/9047538/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com