我想做的是
select
"wise, wisdom and wiseness have a common root" as body,
regexp_replace(body,'wis%','wise')
获得
wise --> wise
wisdom --> wise
wiseness --> wise
因此,其结果将是“智慧、智慧和智慧有共同的根源”。
我有一个优惠券模型,它与产品模型(有枢轴表等等)有很多关系。我创建了一些本地范围,以便只获得可用的优惠券,并且只获得确定类别的优惠券:
public function scopeAvailable($query)
{
return $query->where('available', '>', 0);
}
public function scopeOfCategory($query, $category)
{
return $query->join('categories', 'categories