SQLite SELECT 特定月份的日期

SQLite SELECT date for a specific month(SQLite SELECT 特定月份的日期)
本文介绍了SQLite SELECT 特定月份的日期的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我之前使用过微软的 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'

日期和时间函数

这篇关于SQLite SELECT 特定月份的日期的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!

本站部分内容来源互联网,如果有图片或者内容侵犯您的权益请联系我们删除!

相关文档推荐

SQL/MySQL: split a quantity value into multiple rows by date(SQL/MySQL:按日期将数量值拆分为多行)
FastAPI + Tortoise ORM + FastAPI Users (Python) - Relationship - Many To Many(FastAPI+Tortoise ORM+FastAPI用户(Python)-关系-多对多)
Window functions not working in pd.read_sql; Its shows error(窗口函数在pd.read_sql中不起作用;它显示错误)
How to group by continuous records in SQL(如何在SQL中按连续记录分组)
Select the latest record for an Id per day - Oracle pl sql(选择每天ID的最新记录-Oracle pl SQL)
(Closed) Leaflet.js: How I can Do Editing Geometry On Specific Object I Select Only?((已关闭)Leaflet.js:如何仅在我选择的特定对象上编辑几何图形?)