0
我有類似的表。如何創建屬於一個日期的數據行
ID | startdatetime
1 | 2013-08-30 22:30:00
2 | 2013-08-29 12:00:00
3 | 2013-08-29 13:30:00
4 | 2013-08-27 11:30:00
5 | 2013-08-27 13:30:00
6 | 2013-08-26 09:30:00
我想獲得它們屬於一個日期(例如行2和3屬於2013-08-29
)
我怎麼能寫在教義中的數據?
$em = $this->getDoctrine()->getEntityManager();
$items = $em->getRepository("UserBundle:Table")->findBy('startdatetime' => '*****'));