我试图通过这个雄辩的操作在表用户中的 FullName 中找到“sam”:
$user = User::where('id', '=', $input)->orWhere('fullName', 'LIKE', "%$input%")->find(10);
通过 id 查找按预期工作,但 Where with LIKE 没有返回任何结果。
(如果 $input 是 1 第一个返回结果但如果 $input 是 sam 第二个 where 不返回任何内容)
在数据库中,fullName 的值为“Sam Pettersson”。
有什么我做错了吗?