最近在项目的应用中用到了`不等于`
在laravel中可以用`!=`
然后在tp5中发现用`!=`报错,于是看手册发现要用
代码如下
`use think\Db;`
`$orderlist_0 = Db::name('goods_order')->where('goods_type','<>',9)->limit(30)->select();`
`print_r($orderlist);`
最近在项目的应用中用到了`不等于`
在laravel中可以用`!=`
然后在tp5中发现用`!=`报错,于是看手册发现要用
代码如下
`use think\Db;`
`$orderlist_0 = Db::name('goods_order')->where('goods_type','<>',9)->limit(30)->select();`
`print_r($orderlist);`