How to compare only day and month with date field in mysql?
For example, I've a date in one table: 2014-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"
See Question&Answers more detail:
os 与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…