match-against Questions

3

Solved

I understand that the asterisk is a wildcard that can be appended to the end of fulltext search words, but what if my searched keyword is a suffix? For example, I want to be able to search for "ame...

2

Solved

I have a problem with the MATCH AGAINST function. The following query give me the same result: SELECT * FROM models MATCH(name) AGAINST('Fiat 500') SELECT * FROM models MATCH(name) AGAINST('Fiat'...
Coimbra asked 28/1, 2013 at 22:25

1

MySQL provides FULLTEXT indexes, that can be retrieved with the MATCH (col1,col2,...) AGAINST (expr [search_modifier]) construct. There are several Full-Text Search variants, one of them (and the d...
Mcconaghy asked 20/4, 2013 at 0:54

3

Solved

I'm having a problem when I try to do a full text search in boolean mode using a string with a single quote and an asterisk wildcard, i.e. "levi's*": it seems to search also for all words beginning...
Yb asked 7/9, 2012 at 10:22

4

I'm using MYSQL to generate a score for each result returned by a query. The results are then ordered by the score. The part that doesn't seem to be working properly is when I'm trying to add a s...
Brutality asked 30/4, 2013 at 16:21

2

Solved

I have two tables: CREATE TABLE IF NOT EXISTS `test1` ( `id` int(10) unsigned NOT NULL AUTO_INCREMENT, `bucket_id` int(10) unsigned NOT NULL COMMENT 'folder this component belongs to', `test1_n...
Smukler asked 4/2, 2013 at 20:3

1

Solved

I'm basically trying to create a search to find articles (or articles from an author). I've ended up with this query: SELECT `articles`.*, `authors`.* FROM `articles` LEFT JOIN `authors` ON (`au...
Know asked 8/5, 2011 at 3:14
1

© 2022 - 2024 — McMap. All rights reserved.