Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 695835
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 14, 20262026-05-14T03:00:01+00:00 2026-05-14T03:00:01+00:00

I have a table with users and are trying to get a list with

  • 0

I have a table with users and are trying to get a list with the people who have birthday today so the app can send an email.

The User is defined as

@Entity
public class User {

    @Size(max = 30)
    @NotNull
    private String name;

    [...]
    @Temporal(TemporalType.DATE)
    @DateTimeFormat(style = "S-")
    protected Date birthday;
}

and I’ve got a method which returns the people which were born today like so

@SuppressWarnings("unchecked")
public static List<User> findUsersWithBirthday() {

 List<User> users = 
  entityManager().createQuery("select u from User u where u.birthday = :date")
    .setParameter("date", new Date(), TemporalType.DATE)
    .getResultList();
  return users;
}

This is fine and all for finding people which were born today, however tha’s not really that useful, so I’ve been struggling for a way to find all the users that were born today, independent of the year.

Using MySQL there’s functions I can use like

select month(curdate()) as month, dayofmonth(curdate()) as day

However I’ve been struggling to find a JPA equivalent to that.

I’m using Spring 3.0.1 and Hibernate 3.3.2

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-14T03:00:02+00:00Added an answer on May 14, 2026 at 3:00 am

    I don’t know how to do that in JPQL but HQL has day() and month() functions so you could run:

    from User u 
    where day(u.birthday) = day(CURRENT_DATE) 
    and month(u.birthday) = month(CURRENT_DATE) 
    

    If using HQL is not an option, I would go for a native query.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have dbml with single table users i want add partial class for User
Another question from an app programmer who's trying the first time to get together
I have a table of users which has a username column consisting of a
I have a table of Users that includes a bitmask of roles that the
I have table with 50 entries (users with such details like Name Surname Location
I have a DataGridView binded to this table: [Users] ID Name -- ---- 11
I have a table that saves some account limits like users. For most rows
I have a table, users, in an Oracle 9.2.0.6 database. Two of the fields
I have to build an HTML table that shows data for users versus pages
I have a table User which has an identity column UserID , now what

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.