is_lunar Ob der Mondkalender (0=Sonnenkalender, 1=Mondkalender)
Geburtstag Geburtstag (Datumstyp speichert direkt das Geburtstagsformat 19.07.1985)
Wie frage ich den Datensatz des heutigen Geburtstags ab?
ps: Die Kenntnisse über die Datumsfunktion von MySQL sind nahezu null. Ich hoffe, ihr könnt mir einen Rat geben.
Das schreibe ich gerade, also sollte es in Ordnung sein.
$solar = 当前阳历月份和日(04-11)
$lunar = 当前农历月份和日(03-15)
select * from table where ( is_lunar = 0 and date_format(birthday, '%m-%d') = {$solar} ) or ( is_lunar = 1 and DATE_FORMAT(birthday,'%m-%d') = {$lunar})
知道一个PHP的农历和阳历转化的类,建议是用PHP转换一下,然后在确定一个日期了,在去查询。
SQL大概可以是这样,select * from users where (is_lunar = 1 and birthday = 2017-03-15) or (is_lunar = 0 and birthday = 2017-04-11)