我正在使用laravel 5 我想运行此查询
SELECT *
FROM `discussions`
WHERE
`title` REGEXP CONCAT('[[:<:]]', REPLACE('".$term."', ' ', '[[:>:]].*[[:<:]]'), '[[:>:]]')
我试过这个
Discussion::where('title', 'REGEXP', "CONCAT('[[:<:]]', REPLACE('".$term."', ' ', '[[:>:]].*[[:<:]]'), '[[:>:]]')")->get();
但我没有得到任何回复(甚至没有错误) 可以这样做吗?