如何用“maxBidPrice”显示“文章”?

时间:2016-12-02 13:43:18

标签: sql oracle oracle-sqldeveloper

图片:More information about the structure of the tables "offer" and "bid". Also a "Expected result" wich is shown the result.  <-- really Important

所有优惠价格最高的“ArticleName”。它还应该输出“maxBidPrice”。

我知道逻辑,但我有一个问题要将其翻译成代码。

我想学习SQL,你知道一个易于理解的页面吗?

Select Artikelbez, count(*) MAXGEBOTSPREIS
from Angebot a inner join Gebot g
on g.aid = a.aid
group by a.ARTIKELBEZ, g.GEBOTSPREIS
having count(*) < max(g.GEBOTSPREIS);

最高出价的输出为1,1,1,1。 不要困惑我只是试着把它翻译成英文。

我希望你能帮助我。

最诚挚的问候 绿茶

0 个答案:

没有答案