首页 >数据库 >mysql教程 >如何在 Laravel 5 中将 `LIKE` 运算符与 Eloquent 一起使用?

如何在 Laravel 5 中将 `LIKE` 运算符与 Eloquent 一起使用?

Barbara Streisand
Barbara Streisand原创
2024-11-26 07:33:10792浏览

How Can I Use the `LIKE` Operator with Eloquent in Laravel 5?

Laravel-5 'LIKE' 等效项(Eloquent)

在 Laravel 5 中使用 Eloquent 时,“LIKE”运算符可以通过以下方式复制使用“orWhereLike”方法。但是,如果此方法无法产生所需的结果,那么理解它触发的 MySQL 语句会很有帮助。

在提供的代码中:

BookingDates::where('email', Input::get('email'))->orWhere('name', 'like', Input::get('name'))->get()

相应的 MySQL 语句类似于:

select * from booking_dates where email='[email protected]' or name like Input::get('name');

要准确模仿所需的查询:

select * from booking_dates where email='[email protected]' or name like '%John%'

使用百分比搜索参数周围的符号(“%”)如下所示:

BookingDates::where('email', Input::get('email'))
    ->orWhere('name', 'like', '%' . Input::get('name') . '%')->get();

以上是如何在 Laravel 5 中将 `LIKE` 运算符与 Eloquent 一起使用?的详细内容。更多信息请关注PHP中文网其他相关文章!

声明:
本文内容由网友自发贡献,版权归原作者所有,本站不承担相应法律责任。如您发现有涉嫌抄袭侵权的内容,请联系admin@php.cn