我在从学说中获取数据时遇到 2 个问题:
- 选择从月初到当前日期的记录
- 选择从年初到当前日期的记录
我如何编写一个 Doctrine 查询来做和我们在 Mysql中做的一样的事情
这是我的存储库中的不完整代码?
public function findByYearlyAttendanceTillToday($id)
{
$em = $this->getEntityManager();
$query = $em->createQuery("SELECT count(a) FROM CollegeStudentBundle:StudentAttendance a where a.present LIKE 'A' and a.student_id = :id and a.date > :date");
$query->setParameter('id', $id);
$query->setParameter('date', **?????**);
return $query->getResult();
}