SQLite SELECT 特定月份的日期

2021-12-19 00:00:00 date select sqlite

我之前使用过微软的 Jet 数据库引擎.而且,比如说,如果我需要选择特定月份的条目,我会这样做:

I was using Microsoft's Jet database engine before. And, say, if I needed to select entries for a specific month I do this:

SELECT * FROM `table name` WHERE MONTH(`date column`)=4

但是你如何用 SQLite 做同样的事情?

But how do you do the same with SQLite?

推荐答案

怎么样

SELECT * FROM table_name WHERE strftime('%m', date_column) = '04'

日期和时间函数

相关文章