MySQL Forums
Forum List  »  Newbie

Re: Using astrisk on select match against
Posted by: Radu Enea
Date: September 03, 2021 12:12AM

Ok, but the sentence from below show results finding words with "sanders":

SELECT user_id, first_name AS name, gender
FROM user_details
WHERE MATCH (first_name) AGAINST('sand*')


The problem is when I use the following:

SELECT user_id, first_name AS name, gender
FROM user_details
WHERE MATCH (first_name) AGAINST('*ande*')

witch must show at least word with "sanders" or "landers". But it show's zero results.

Options: ReplyQuote


Subject
Written By
Posted
Re: Using astrisk on select match against
September 03, 2021 12:12AM


Sorry, you can't reply to this topic. It has been closed.

Content reproduced on this site is the property of the respective copyright holders. It is not reviewed in advance by Oracle and does not necessarily represent the opinion of Oracle or any other party.