Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • Home
  • SEARCH
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 7647801
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 31, 20262026-05-31T10:33:13+00:00 2026-05-31T10:33:13+00:00

I was given a test for a new job, and I can’t decide on

  • 0

I was given a test for a new job, and I can’t decide on which way to go, the question is as follows:

on a given database table (which I designed for another question):

message_id | INT PRIMARY AUTO_INCREMENT
user_id    | INT FOREIGN_KEY
from_id    | INT FOREIGN_KEY
message    | TEXT

let’s say I want to search for a text in all the messages of a given user, would it be faster to do:

$query = "SELECT * FROM messages m WHERE user_id='$id' AND message LIKE '%$string%';

or would it be faster to do:

$query = "SELECT * FROM messages m WHERE user_id='$id';

and run on the result set I get, a substr_count()?

Or is there some faster, more efficent method to do this?

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-31T10:33:14+00:00Added an answer on May 31, 2026 at 10:33 am

    You should always search on database side. Although a LIKE '%word%' causes always a full table scan, not every row has to get serialized, transferred to the client and deserialized again.

    Also, if you can optimize the query to use a fulltext index or to match only the last part of a word (e.g. LIKE 'word%') a full table scan wouldn’t be necessary because it can be evaluated over an index (if it exists).

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

Question : What's the simplest way how to test if given Regex matches whole
Environment: ASP.net MVC: Given anonymous structure as such: var test = new { name
Given the test case below how can I: Sort the IList<TestObject> based on the
given a class definition like: public class Test<T> { T _value; public void Test(T
Given the following procedure call which returns an application-managed unique integer: DECLARE @id as
Given a Runnable object e.g. public class Test implements Runnable { @Override public void
Is there a way of checking if a given point lies on a curve?
Given the test string: <div class=comment-quoter>Comment by <strong>Tom</strong> I want to change it to
To explain my question, I have given a small scenario: Say I have a
Given below are two methods which create a delegate to set a field in

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.