postgresql中通过jpa2的month()函数和year()函数

postgresql中通过jpa2的month()函数和year()函数,postgresql,jpa-2.0,jpql,criteria-api,Postgresql,Jpa 2.0,Jpql,Criteria Api,如何使用jpa2条件查询或jpql获取postgresql日期字段的月份和年份 有人这样做过吗?几个例子,如何在PostgreSQL中从日期或时间戳中提取月份: select to_char(now(), 'month'); select to_char(now(), 'MM'); select extract('month' from now()); select date_part('month', now()); 只是。几个例子,如何在PostgreSQL中从日期或时间戳中提取月份: s

如何使用jpa2条件查询或jpql获取postgresql日期字段的月份和年份


有人这样做过吗?

几个例子,如何在PostgreSQL中从日期或时间戳中提取月份:

select to_char(now(), 'month');
select to_char(now(), 'MM');
select extract('month' from now());
select date_part('month', now());

只是。

几个例子,如何在PostgreSQL中从日期或时间戳中提取月份:

select to_char(now(), 'month');
select to_char(now(), 'MM');
select extract('month' from now());
select date_part('month', now());
只是。

用这个:
FUNC('MyFunc',a,b,c)

示例:
SELECT FUNC('to_char',current_date',month')
使用此:
FUNC('MyFunc',a,b,c)

示例:
SELECT FUNC('to_char',current_date',month')

使用JPA标准API(仅使用Hibernate进行测试):

使用JPA标准API(仅使用Hibernate进行测试):


如何进行条件查询JEE6的JPA如何进行条件查询JEE6的JPA
YEAR(date)
MONTH(date)
DAY(date) 
HOUR(date)
MINUTE(date)
SECOND(date)