我正在使用 symfony1.4 和学说。我需要检查值为 的条件NULL
。我需要写一个查询 where status = 1
and start=NULL
and end= NULL
and estimated_time != NULL
。我已经尝试过了,但我无法得到结果。
$tickets = Doctrine_Core::getTable('table')
->createQuery('a')
->where('status=?','1')
->andWhere('start=?', '')
->andWhere('end=?', '')
->andWhere('estimated_time!=?','')
->orderBy('id DESC');
任何帮助将不胜感激。谢谢你..