@Query("Select * From Mstudent where (strftime('%d%m',dob)) = :todayDate order by (strftime('%d%m',dob))")
List<Mstudent> getStudentByBirthDate(Date todayDate);
this is what I have done but this is giving me an error because the query is not right. can we filter by date and month only and ignoring year?