首頁 >資料庫 >mysql教程 >如何在 Laravel 5 中將 `LIKE` 運算子與 Eloquent 一起使用?

如何在 Laravel 5 中將 `LIKE` 運算子與 Eloquent 一起使用?

Barbara Streisand
Barbara Streisand原創
2024-11-26 07:33:10785瀏覽

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