从时间戳字段中选择BDays

时间:2016-02-17 08:32:26

标签: sql postgresql

如何从一个字段中选择postgresql数据库,这个字段是这个1969-11-28 00:00:00所有在某个日期(例如3月7日)生日的人的时间戳。

1 个答案:

答案 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);