| Author |
Problem with JPQL: distinct
|
Rahul Ba
Ranch Hand
Joined: Oct 01, 2008
Posts: 203
|
|
Hi all, I am writing simple JPQL. It seems to be not working. It's as select new com.Names(distinct(cdtwk.cName)) from CSummaryByDateWeek cdtwk; It says unexpected token: distinct. When I take out the word distinct, it works fine.I know JPQL have distict keyword word, but then why not working??
|
 |
Rahul Ba
Ranch Hand
Joined: Oct 01, 2008
Posts: 203
|
|
Hi all, It worked as select distinct new com.Names(cdtwk.cName) from CSummaryByDateWeek cdtwk; Regards, Rahul
|
 |
fan lin
Greenhorn
Joined: Jun 01, 2011
Posts: 1
|
|
hi, I do the same thing like you , but i don't understand how jpa know that which field need to distinct ?
My jpql is
select DISTINCT new model.Loggoldtmp( DATE_FORMAT(createdate, '%Y-%m-%d') as datevalue,year(createdate) as yearvalue,month(createdate) as monthvalue,quarter(createdate) as seasonvalue,dayofyear(createdate) as dayofyearvalue,dayofmonth(createdate) as dayofmonthvalue,dayofweek(createdate) as dayofweekvalue ,now() as createdate) "+
"from Loggold o";
|
 |
 |
|
|
subject: Problem with JPQL: distinct
|
|
|