首先介绍find_in_set
有个文章表里面有个type字段,他存储的是文章类型,有 1头条,2推荐,3热点,4图文 .....11,12,13等等
现在有篇文章他既是 头条,又是热点,还是图文,
type中以 1,3,4的格式存储.
们我们如何用sql查找所有type中有4图文标准的文章呢??
这就要我们的find_in_set出马的时候到了.
以下为引用的内容:
select * from article where FIND_IN_SET('4',type)
然后这个语法在laravle eloquent中怎么实现呢
从网上看到的网友回复是这样的
You need to escape the call to
FIND_IN_SET()
using quotes:$query = DB::table('tags_value') ->whereRaw('FIND_IN_SET(css,Tags)') ->get();
If you want to parameterize the column for which you search in
FIND_IN_SET
, then you can try something like this:$colname = 'css' $query = DB::table('tags_value') ->whereRaw('FIND_IN_SET(?,Tags)', [$colname]) ->get();
上面的语法我并没有成功下面是我成功的语法
$articles = DB::table("article")->whereRaw('FIND_IN_SET(1,types)',true)->where("status",1)->orderBy("id","desc")->get()->paginate(15);
我的代码与上面的例子有出入,但是意思是一样的。