仅将日期和月份与 mysql 中的日期字段进行比较

Compare only day and month with date field in mysql(仅将日期和月份与 mysql 中的日期字段进行比较)
本文介绍了仅将日期和月份与 mysql 中的日期字段进行比较的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

如何在mysql中仅将日期和月份与日期字段进行比较?例如,我在一张表中有一个日期:2014-07-10

How to compare only day and month with date field in mysql? For example, I've a date in one table: 2014-07-10

同样,另一个表中的另一个日期 2000-07-10.我只想比较日期字段上的日和月是否相等.

Similarly, another date 2000-07-10 in another table. I want to compare only day and month is equal on date field.

我试过这种格式.但我无法得到答案

I tried this format. But I can't get the answer

select *
from table
where STR_TO_DATE(field,'%m-%d') = STR_TO_DATE('2000-07-10','%m-%d')
and id = "1"

推荐答案

改用 DATE_FORMAT:

Use DATE_FORMAT instead:

SELECT DATE_FORMAT('2000-07-10','%m-%d')

收益

07-10

这是您用 DATE_FORMAT() 重写的查询:

Here's your query re-written with DATE_FORMAT():

SELECT *
FROM table
WHERE DATE_FORMAT(field, '%m-%d') = DATE_FORMAT('2000-07-10', '%m-%d')
AND id = "1"

这篇关于仅将日期和月份与 mysql 中的日期字段进行比较的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!

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

相关文档推荐

Execute complex raw SQL query in EF6(在EF6中执行复杂的原始SQL查询)
Hibernate reactive No Vert.x context active in aws rds(AWS RDS中的休眠反应性非Vert.x上下文处于活动状态)
Bulk insert with mysql2 and NodeJs throws 500(使用mysql2和NodeJS的大容量插入抛出500)
Flask + PyMySQL giving error no attribute #39;settimeout#39;(FlASK+PyMySQL给出错误,没有属性#39;setTimeout#39;)
auto_increment column for a group of rows?(一组行的AUTO_INCREMENT列?)
Sort by ID DESC(按ID代码排序)