SQL从表中选择最大值

发布于 2024-11-05 03:04:03 字数 276 浏览 0 评论 0原文

在我的一次采访中,有人问我如何才能选择 不带关键字 MAXTOP 的数据库中的最大值。

我的回答是:

select Table.Value 
from Table 
where Table.Value >= all( select Table.Value from Table) 

但这不是正确的。采访者说 我应该只选择一项。

有什么想法吗?

谢谢 ;)

On one of my interviews I was asked how it's possible to select
maximal value from DB without keyword MAX and TOP.

My answer was:

select Table.Value 
from Table 
where Table.Value >= all( select Table.Value from Table) 

But this wasn't the right one. The interviewer said that
I should do it only with one select.

Any ideas ?

Thank you ;)

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(5

烟若柳尘 2024-11-12 03:04:03

怎么样;

select -min(-fld) from table

效率低下&丑陋 糟糕,错过了单选限制

select distinct Value from Table T
  where not exists (select Value from Table where Value > T.Value)

How about;

select -min(-fld) from table

Less efficient & uglier Woops missed the single select restriction

select distinct Value from Table T
  where not exists (select Value from Table where Value > T.Value)
肩上的翅膀 2024-11-12 03:04:03
SELECT t1.Value
FROM atable t1
 LEFT JOIN atable t2 ON t1.Value < t2.Value
WHERE t2.ID IS NULL
SELECT t1.Value
FROM atable t1
 LEFT JOIN atable t2 ON t1.Value < t2.Value
WHERE t2.ID IS NULL
各空 2024-11-12 03:04:03

一个建议(如果你使用MySQL,我也设置了限制):

SELECT table.value FROM table ORDER BY table.value DESC LIMIT 1;

One suggestion (if you use MySQL, I put limit also):

SELECT table.value FROM table ORDER BY table.value DESC LIMIT 1;
如果没结果 2024-11-12 03:04:03
SET ROWCOUNT 1

SELECT number 
FROM master..spt_values
ORDER BY number DESC
SET ROWCOUNT 1

SELECT number 
FROM master..spt_values
ORDER BY number DESC
眼前雾蒙蒙 2024-11-12 03:04:03

按键对结果集进行降序排序,最后为空。
这使得具有最大值的行成为第一个。

选择第一行,就完成了。

order the result set by the key, descending, nulls last.
That makes the row with the max, first.

select the first row, and you are done.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文