thinkphp 小弟我想用or 连接
程序员文章站
2024-02-08 19:20:46
...
thinkphp 我想用or 连接
在不
我想问一下
select * from table where id=2 or pid =2
夏草 15:05:10
我想得到上面的语句
我这样写
$map['id'] = '1';
$map['pid'] = '2';
$modle->where($map)->select();
得么的是 and 连起来的
我怎么写一下这个数组呢
------解决方案--------------------
我想,手册中说的很清楚了:
更改默认的逻辑判断,通过使用 _logic 定义查询逻辑
$condition['name'] = 'thinkphp';
$condition['account'] = 'thinkphp';
$condition['_logic'] = 'OR';
// 把查询条件传入查询方法
$User->where($condition)->select();
最后生成的SQL语句是
SELECT * FROM think_user WHERE `name`='thinkphp' OR `account`='thinkphp'
在不
我想问一下
select * from table where id=2 or pid =2
夏草 15:05:10
我想得到上面的语句
我这样写
$map['id'] = '1';
$map['pid'] = '2';
$modle->where($map)->select();
得么的是 and 连起来的
我怎么写一下这个数组呢
------解决方案--------------------
我想,手册中说的很清楚了:
更改默认的逻辑判断,通过使用 _logic 定义查询逻辑
$condition['name'] = 'thinkphp';
$condition['account'] = 'thinkphp';
$condition['_logic'] = 'OR';
// 把查询条件传入查询方法
$User->where($condition)->select();
最后生成的SQL语句是
SELECT * FROM think_user WHERE `name`='thinkphp' OR `account`='thinkphp'
相关文章
相关视频
推荐阅读
-
thinkphp 小弟我想用or 连接
-
小弟我的THINKPHP项目: SUBMENU_CONFIG = {$menu}, 有语法异常
-
小弟我可以这样理解thinkphp吗
-
分享:小弟我的php框架再次更新,山寨版thinkphp,开发效率再次大幅提升
-
小弟我用NETBEANS连接thinkphp官网上那个SVN如何操作
-
分享:小弟我的php框架再次更新,山寨版thinkphp,开发效率再次大幅提升
-
小弟我用ThinkPHP时的session有关问题
-
小弟我想用帝国cms6.5做个这样的网站,不知帝国是否能达到要求,请大家帮小弟我鉴定一下
-
小弟我想用帝国cms6.5做个这样的网站,不知帝国是否能达到要求,请大家帮小弟我鉴定一下
-
[!]怎么把wordpress的数据库连接修改为小弟我自己配置的文件:app_config.php中的链接