标签: php where-clause medoo
如何在medoo中编写这个sql查询?
select * from users where name='John' and age=35?
我试过了,
select('users','*',["AND"=>["name[=]"=>"John","age[=]"=>35]]);
有人可以解释一下这个原因吗?
答案 0 :(得分:2)
原因很简单: 当您想要在继续之前检查查询是否返回数据时,它更容易使用。 例如:
2011-12-12T21:17:52+08:00