私はsymfony1.4とdoctrineを使用しています。値が である条件を確認する必要がありますNULL
。where status = 1
and start=NULL
and 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');
どんな助けでも大歓迎です.Thank you..