Tagged Questions

5
votes
2answers
124 views

Using an overall WHERE clause when using UNIONS in sql

I am trying to return the MATCH() AGAINST() results against several tables using UNIONS, the only problem is some rows return a relevance of 0, I want to exclude these. After the unions is there a way ...
3
votes
1answer
403 views

how to get the result of mysql match against in form of percentage?

I am using Match (Col1) Against (Val) in mysql. select match(body) against(body_var) from articles; now in case of completely match i am getting result as a number (for example 14.43). what does ...
3
votes
1answer
214 views

Can MySQL fulltext search return an index(position) instead of a score?

I would like to use the position/index found by the Match...Against fulltext search in mysql to return some text before and after the match in the field. Is this possible? In all the examples I have ...
2
votes
1answer
186 views

Select single found result with MATCH AGAINST

I am trying to get a single result from a table row I'm using this query "SELECT * FROM $tableName WHERE MATCH(nombre, mat1, mat2, mat3, mat4, mat5, mat6, mat7) AGAINST ('$busqueda' IN BOOLEAN ...
2
votes
1answer
372 views

Problem with MATCH AGAINST in Doctrine

I found that if I use MATCH AGAINST in Doctrine with WHERE syntax does not replace the parameters passed. For example if I run the following code $ q = Doctrine_Query::create() ->select('*') ...
1
vote
1answer
21 views

How to eliminate bias against shorter rows in MATCH/AGAINST?

I am working on a simple search interface in a MyISAM table in MySQL, that is implementing the MATCH/AGAINST procedures. It seems to work alright at first glance, but upon further inspection, it ...
1
vote
1answer
137 views

Problems with match against

im trying to make a search engine with php and mysql and im using match agains. However im having a problem (probably syntax) that is driving me crazy. Here is the code: <?php $busqueda= ...
0
votes
1answer
93 views

Why does this SQL query give correct results on my local database, but wrong result on the server database?

On my local MySQL database, this query to search for a specific word "samy" gives me the correct data consisting of two 2 results: SELECT * FROM members LEFT JOIN member_details ON ...
0
votes
1answer
181 views

PHP MySQL show related items using tags

I want to show similar items using tags. I have items table with itemid, itemname and itemtagids as columns. itemtagids has CSV tag ids. Say in itemid 1, I have 3 tag ids 1,2,3 and in itemid 2 I ...
0
votes
2answers
169 views

MySql FULLTEXT match against a list of keywords from a lookup table

I don't know if this is possible, but it would simplify my calculations to be able to match against each word in a lookup table with a single query. (otherwise, I'll probably pull the tables into ...
0
votes
2answers
92 views

negation with match against

I want search those rows that do not contain "rajasthan" in the state field using match against in MySql. My query is this: SELECT * from member where MATCH(state) AGAINST('-rajasthan' IN BOOLEAN ...
0
votes
2answers
298 views

MySQL MATCH-AGAINST plural words?

I'd like to add a search to my site. I have a database of challenges from a video game. Each challenge has a title and description, I'd like to be able to search at least the description, but both ...
0
votes
1answer
376 views

MATCH AGAINST in MySQL not showing records when search for string less than 4 chars

I am using FULLTEXT index on a column and when I use MATCH....AGAINST in boolean mode for any search term which is less than 4 characters in length then it doesn't return any records. And when I use ...
0
votes
2answers
148 views

MySQL MATCH AGAINST query with long WHERE AND OR syntax?

The following query is not working the way I expect: SELECT DISTINCT * FROM mytable WHERE MATCH (StrNum, StrName, StrType, TownName, Zip) AGAINST ('elm') AND Color = 'RED' OR Color = 'WHITE' OR ...
0
votes
3answers
398 views

Mysql MATCH AGAINST - IN BOOLEAN MODE problem

I need to find the following string: 'c++' My sql query look like this: SELECT * FROM shop_product WHERE MATCH(shop_product.name, shop_product.product_model, shop_product.keywords, ...
0
votes
1answer
305 views

Mysql match against alternative

I need a search with a relevance algorithm and the database is mysql. I have to sort the results by date, if keyword is in title or not, number of apparitions of the keyword in the text and so on. ...