博客列表 >tp3.2 tp5.0 tp5.1中where not in 写法

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

朝游东海
朝游东海原创
2018年09月30日 17:17:5630095浏览

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 核实处理。
全部评论
文明上网理性发言,请遵守新闻评论服务协议