如何用 Doctrine 查询 NOT NULL?
我有表测试:
Test:
id | name
1 | aaa
2 |
3 | ccc
4 | aaa
5 |
6 | ddd
我想要名称不为空的结果:
aaa
ccc
aaa
ddd
我如何获得:
Doctrine_Core::getTable('Test')->findBy('name', NOTNULL??) <-doesnt working
并在模型中使用:
$this->createQuery('u')
->where('name = ?', NOTNULL ???) <- doesnt working
->execute();
I have table Test:
Test:
id | name
1 | aaa
2 |
3 | ccc
4 | aaa
5 |
6 | ddd
I want result where name is NOT NULL:
aaa
ccc
aaa
ddd
How can i get with:
Doctrine_Core::getTable('Test')->findBy('name', NOTNULL??) <-doesnt working
and in model with:
$this->createQuery('u')
->where('name = ?', NOTNULL ???) <- doesnt working
->execute();
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
试试这个:
这是标准的 SQL 语法。 Doctrine 不会将 Null 值转换为正确的 sql。
Try this:
which is standard SQL syntax. Doctrine doesn't convert Null values into proper sql.
从查询生成器和 Expr 类以 Doctrine 方式执行此操作。
还有distinct()函数。
Do it in Doctrine way, from query builder and Expr class.
there are also distinct() function.
或者只使用 Doctrine 过滤器:
然后
Or just use Doctrine filter:
Then