Blogger Information
Blog 43
fans 2
comment 2
visits 113226
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
tp3.2 tp5.0 tp5.1中where not in 写法
朝游东海
Original
30102 people have browsed it

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();


Statement of this Website
The copyright of this blog article belongs to the blogger. Please specify the address when reprinting! If there is any infringement or violation of the law, please contact admin@php.cn Report processing!
All comments Speak rationally on civilized internet, please comply with News Comment Service Agreement
0 comments
Author's latest blog post