选择日期字段位于给定月份和年份的行
我的 SQL 表如下所示:
id (int) | date (date) | text1 (varchar) | text2 (varchar)
我想选择日期适合给定月份和年份的行,无论是哪一天。 月份和年份都在 select 语句中以整数形式给出。 所以缺少的是 where 子句。也许 extract()
是我正在寻找的东西,但我不知道如何将它与两个整数一起使用,例如 2011
和 02< /代码>。
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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以使用 extract:
但在这种情况下您也可以这样做:
You can use extract:
But in this case you could also do this: