如何在zend框架中使用多条件选择?
我想在 zend 框架中选择具有多个条件的行,我该如何实现/
1-示例“从名字 = alex 和 city=xx 的人中选择 id,名字,姓氏,城市”; 2-示例“从名字=alex或城市=xx的人中选择id、名字、姓氏、城市”;
i want to select rows with multi condition in zend framework how can i implement that/
1-example "select id,firstname,lastname,city from person where firstname=alex and city=xx ";
2-example "select id,firstname,lastname,city from person where firstname=alex or city=xx ";
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
看一下
Zend_Db_Select
手册查看更多示例。Take a look at the
Zend_Db_Select
manual to see more examples.您可以在Zend.DB手册中查看示例
You can see the examples in Zend.DB manual