在 MySQL 子查询中使用 LIMIT 时出现问题?

发布于 2024-11-17 00:02:11 字数 556 浏览 0 评论 0原文

我有一个 SQL 查询如下

epf_application 位置选择 * application_id IN
(选择 application_id 来自 epf_application_device_type 地点 device_type_id IN
(选择 device_type_id 来自 epf_device_type 地点 名称="someDevice") LIMIT 30) LIMIT 30

当我在 phpMyAdmin 中运行它时,出现以下错误

1235 - 此版本的 MySQL 尚不支持“LIMIT &”在/所有/任何/一些 子查询'

中,我猜测在子查询中放置 LIMIT 存在问题。关于如何解决这个问题有什么建议吗?

I have a SQL query as follows

SELECT * FROM epf_application WHERE
application_id IN
(SELECT
application_id FROM
epf_application_device_type WHERE
device_type_id IN
(SELECT
device_type_id FROM
epf_device_type WHERE
name="someDevice") LIMIT 30) LIMIT
30

When I run it in phpMyAdmin, I get the following error

1235 - This version of MySQL doesn't yet support 'LIMIT & IN/ALL/ANY/SOME
subquery'

From the error, I am guessing that there is a problem with placing LIMIT in a subquery. Any suggestions on how I can fix this?

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

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

发布评论

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

评论(1

一个人练习一个人 2024-11-24 00:02:11
SELECT 
 ea.* 
FROM 
 epf_application ea JOIN epf_application_device ead 
  ON ead.application_id = ea.application_id 
 JOIN epf_device_type edt 
  ON edt.device_type_id = ead.device_type_id 
WHERE 
 edt.name = 'someDevice' 
LIMIT 30
SELECT 
 ea.* 
FROM 
 epf_application ea JOIN epf_application_device ead 
  ON ead.application_id = ea.application_id 
 JOIN epf_device_type edt 
  ON edt.device_type_id = ead.device_type_id 
WHERE 
 edt.name = 'someDevice' 
LIMIT 30
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文