mysql单表子查询

发布于 2024-09-13 06:35:25 字数 167 浏览 2 评论 0原文

我的“条目”表中有两列:一个非唯一的 ID 和一个日期戳 (YYYY-MM-DD)。我想选择“今天插入的所有以前从未输入过的条目 ID”。

我一直在尝试使用子查询,但我认为我没有正确使用它,因为它们都是在同一个表上执行的。有人可以帮助我使用正确的 select 语句吗?如果需要,我可以提供更多详细信息。

I have 2 columns in an "entries" table: a non-unique id, and a date stamp (YYYY-MM-DD). I want to select "all of the entry id's that were inserted today that have never been entered before."

I've been trying to use a subquery, but I don't think I'm using it right since they're both performed on the same table. Could someone help me out with the proper select statement? I can provide more details if need be.

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

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

发布评论

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

评论(1

那支青花 2024-09-20 06:35:25

免责声明:我现在无法访问 mysql 数据库,但这应该有帮助:

select
  e.id
from
   entries e
where
   e.date = curdate() and
   e.id not in
     (select id from entries e2 where e2.date < e.date)

Disclaimer: I don't have access to a mysql database right now, but this should help:

select
  e.id
from
   entries e
where
   e.date = curdate() and
   e.id not in
     (select id from entries e2 where e2.date < e.date)
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文