选择日期字段位于给定月份和年份的行

发布于 2024-10-17 23:43:09 字数 289 浏览 1 评论 0原文

我的 SQL 表如下所示:

id (int) | date (date) | text1 (varchar) | text2 (varchar)

我想选择日期适合给定月份和年份的行,无论是哪一天。 月份和年份都在 select 语句中以整数形式给出。 所以缺少的是 where 子句。也许 extract() 是我正在寻找的东西,但我不知道如何将它与两个整数一起使用,例如 201102< /代码>。

My SQL table looks like this:

id (int) | date (date) | text1 (varchar) | text2 (varchar)

I want to select the lines whose date suits a given month and year, regardless of the day.
Both month and year are given in the select-statement as integers.
So the missing thing is the where-clause. Perhaps extract() is the thing I'm looking for, but I don't know how to use it with the two integers, e.g. 2011 and 02.

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

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

发布评论

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

评论(1

鹿! 2024-10-24 23:43:09

您可以使用 extract:

SELECT * FROM yourtable
WHERE EXTRACT(month FROM "date") = 2
AND EXTRACT(year FROM "date") = 2011

但在这种情况下您也可以这样做:

SELECT * FROM yourtable
WHERE "date" >= '2011-02-01' AND "date" < '2011-03-01'

You can use extract:

SELECT * FROM yourtable
WHERE EXTRACT(month FROM "date") = 2
AND EXTRACT(year FROM "date") = 2011

But in this case you could also do this:

SELECT * FROM yourtable
WHERE "date" >= '2011-02-01' AND "date" < '2011-03-01'
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文