如何从一个字段中选择postgresql数据库,这个字段是这个1969-11-28 00:00:00
所有在某个日期(例如3月7日)生日的人的时间戳。
答案 0 :(得分:2)
您可以使用to_char()
仅返回月份和日期:
select *
from person
where to_char(bday, 'mm-dd') = '03-07'
或使用提取功能:
select *
from person
where (extract(month from bday), extract(day from bday)) = (3,7);