11
我有表測試:如何使用Doctrine查詢NOT NULL?
Test:
id | name
1 | aaa
2 |
3 | ccc
4 | aaa
5 |
6 | ddd
我想要的結果,其中名稱爲NOT NULL:
aaa
ccc
aaa
ddd
如何我可以得到:
Doctrine_Core::getTable('Test')->findBy('name', NOTNULL??) <-doesnt working
,並在模型:
$this->createQuery('u')
->where('name = ?', NOTNULL ???) <- doesnt working
->execute();
謝謝,我怎樣才能用這個與findby? –
您不能,您需要編寫自己的自定義方法。 – Dziamid