這樣可以很清楚我有這個字段使用通配符SQL中的文本字段搜索詞
Columntobesearch
aword1 bword1
aword2 bword2
aword3 bword4
現在我想要做的就是使用SQL通配符所以我做了什麼搜索這樣
%searchbox%
我放置通配符在我的搜索,但它會搜索什麼樣的兩端就是在球場上時,我搜索「AWORD」的所有字段的顯示,但是當我搜索「bword」
的第一個字沒有正在顯示,請幫助。
這是我的全部代碼
$Input=Input::all();
$makethis=Input::flash();
$soptions=Input::get('soptions');
$searchbox=Input::get('searchbox');
$items = Gamefarm::where('roost_hen', '=',Input::get('sex'))
->where($soptions, 'LIKE','%' . $searchbox . '%')
->paginate(12);
您可以分享代碼,您如何進行查詢? – 2015-02-11 03:50:02
我編輯了我的問題先生 – 2015-02-11 14:23:12