如何在 SQL 子查询中返回多个结果?

发布于 2024-09-26 03:14:48 字数 349 浏览 2 评论 0原文

我在下面有一个查询,想知道是否可以获得超过 1 个结果。我想要获取 4 个最新条目。

谢谢!

select c.email,c.text,m.alertDataID  
from client_users as c, monitor_alerts as a, monitor_alerts_data as m
where c.id=a.userID and a.alertID=m.alertID and 
m.alertDataID = (SELECT alertDataID FROM monitor_alerts_data ORDER BY alertDataID DESC LIMIT 1) 
LIMIT 4

I have a query below and would like to know if it is possible to get more than 1 result. I would like to get the 4 most recent entries.

Thanks!

select c.email,c.text,m.alertDataID  
from client_users as c, monitor_alerts as a, monitor_alerts_data as m
where c.id=a.userID and a.alertID=m.alertID and 
m.alertDataID = (SELECT alertDataID FROM monitor_alerts_data ORDER BY alertDataID DESC LIMIT 1) 
LIMIT 4

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

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

发布评论

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

评论(1

帅的被狗咬 2024-10-03 03:14:48

使用 IN 而不是 =

 ... and m.alertDataID IN (SELECT alertDataID FROM ...)

也不要将子查询限制为 LIMIT 1。您需要在子查询中使用LIMIT 4

Use IN instead of =:

 ... and m.alertDataID IN (SELECT alertDataID FROM ...)

Also don't limit your subquery to LIMIT 1. You'll need LIMIT 4 in the sub-query.

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