in Education by
I currently working on a laravel 5.4 project where I'm trying to find values in my database that are similar to a search string introduced. For example, I have the following search term $search_term = "Some long phrase with words" and in my database (MySQL) I have a table tags with a column value. One row in this table would have value => 'some', another row might have value => 'long', and another row might have value => 'phra' What I need is to create a collection of all tags where the value appears in my search term. Which means the 3 rows i mentioned should match for my $search_term I currently know that I can use eloquent in laravel and say something like Tag::where('value', 'like', "%".$search_term."%")->get() But as far as I understand this would see if the $search_term is a sub-string of what's in the value column. How can I use eloquent to ask if value is contained (a sub-string) in $search_term? JavaScript questions and answers, JavaScript questions pdf, JavaScript question bank, JavaScript questions and answers pdf, mcq on JavaScript pdf, JavaScript questions and solutions, JavaScript mcq Test , Interview JavaScript questions, JavaScript Questions for Interview, JavaScript MCQ (Multiple Choice Questions)

1 Answer

0 votes
by
I would prefer this, because not every string is valid regexp. TAG::whereRaw('? LIKE CONCAT("%", value, "%")', [$search_term])->get();

Related questions

0 votes
    I have a scenario that I want to implement in Laravel. I have already implemented this kind of approach ... Questions for Interview, JavaScript MCQ (Multiple Choice Questions)...
asked Jul 26, 2022 in Education by JackTerrance
0 votes
    I have a scenario that I want to implement in Laravel. I have already implemented this kind of approach ... Questions for Interview, JavaScript MCQ (Multiple Choice Questions)...
asked Jul 20, 2022 in Education by JackTerrance
0 votes
    I have a scenario that I want to implement in Laravel. I have already implemented this kind of approach ... Questions for Interview, JavaScript MCQ (Multiple Choice Questions)...
asked Jul 20, 2022 in Education by JackTerrance
0 votes
    How many types of relationships available in Laravel Eloquent?...
asked Sep 30, 2021 in Technology by JackTerrance
0 votes
    What are Laravel eloquent?...
asked Sep 30, 2021 in Technology by JackTerrance
0 votes
    I've created a searchable activity as described here: http://developer.android.com/guide/topics/search/ ... Questions for Interview, JavaScript MCQ (Multiple Choice Questions)...
asked Feb 28, 2022 in Education by JackTerrance
0 votes
    In a __________ index, an index entry appears for only some of the search-key values. (a) Dense (b) ... from Ordered Indices in portion Indexing and Hashing of Database Management...
asked Oct 10, 2021 in Education by JackTerrance
0 votes
    I have a table structure like this : subscribers with attributes: id, status I want to have a way ... JavaScript Questions for Interview, JavaScript MCQ (Multiple Choice Questions)...
asked Apr 2, 2022 in Education by JackTerrance
0 votes
    Write a program to accept string from user and search a given character from string without using find() function Select the correct answer from above options...
asked Nov 30, 2021 in Education by JackTerrance
0 votes
    The data type mapping between the database column and sqoop column can be overridden by using the parameter A - --override- ... - --override-column-java D - --map-column-java...
asked Jan 13, 2021 in Technology by JackTerrance
0 votes
    SELECT id, amount FROM report I need amount to be amount if report.type='P' and -amount if report.type='N' ... this to the above query? Select the correct answer from above options...
asked Jan 28, 2022 in Education by JackTerrance
0 votes
    I have the dataframe as below: df ID val 1 0.0 2 yes 3 1.0 4 0.0 5 yes How do I match my ... use np.where along with the bfill? Select the correct answer from above options...
asked Jan 10, 2022 in Education by JackTerrance
0 votes
    What is the procedure to count the number of times a given value appears in an array of integers?...
asked Apr 24, 2021 in Technology by JackTerrance
0 votes
    how can i create a script in which i can search someone number and it will provide me name, country, email ... an excel file format Select the correct answer from above options...
asked Dec 23, 2021 in Education by JackTerrance
0 votes
    8. search engine maintains an internal database of commonly asked questions and their answers. Select the correct answer from above options...
asked Dec 19, 2021 in Education by JackTerrance
...