博主信息
朝游东海
博文
43
粉丝
2
评论
2
访问量
73654
积分:3
P豆:837

tp3.2 tp5.0 tp5.1中where not in 写法

2018年09月30日 17:17:56阅读数:23832博客 / 朝游东海/ tp5

where not in 

tp3.2.3 

M('table')->where(['id'=>id])->where(['field'=>['not in',$where]])->delete();


tp5.0 

Db::name('table')->where('id',$id)->where('field','not in',$where)->delete();

Db::name('table')->where('id',$id)->whereNotIn('field',$where)->delete();

 

tp5.1

Db::name('table')->where('id',$id)->where('field','not in',$where)->delete();

Db::name('table')->where('id',$id)->whereNotIn('field',$where)->delete();


版权申明:本博文版权归博主所有,转载请注明地址!如有侵权、违法,请联系admin@php.cn举报处理!

全部评论

文明上网理性发言,请遵守新闻评论服务协议

条评论