选择具有非不同外键的行

发布于 2024-10-18 01:02:41 字数 186 浏览 0 评论 0原文

我有一个表“pages”,如下所示:

id  | title | menu_id
 1    'foo'      1
 2    'bar'      1
 3    'baz'      2

我正在尝试选择 menu_id 不不同的行。在此示例中,查询应仅返回前两行。最好的方法是什么?

I have a table 'pages' that looks like this:

id  | title | menu_id
 1    'foo'      1
 2    'bar'      1
 3    'baz'      2

I'm trying to select rows whose menu_id is NOT distinct. In this example, the query should return only the first two rows. What is the best way to do this?

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

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

发布评论

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

评论(1

人生戏 2024-10-25 01:02:41
select title, menu_id from tableName group by menu_id having count(menu_id) > 1
select title, menu_id from tableName group by menu_id having count(menu_id) > 1
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文