I have a table
CREATE TABLE `ftx_utf8` (
`id` int(10) unsigned NOT NULL AUTO_INCREMENT,
`col1` varchar(45) NOT NULL,
`col2` text NOT NULL,
PRIMARY KEY (`id`),
FULLTEXT KEY `FTX` (`col1`,`col2`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8
with the content
|id|col1 |col2 |
|1 |255-381| |
|2 | |255-381|
|3 |255381 | |
|4 | |255381 |
Now If I execute the query:
SELECT id, MATCH(col1, col2) AGAINST ('"255381"' IN BOOLEAN MODE) AS match1
FROM ftx_utf8
HAVING match1 > 0
it returns rows 3 and 4
But this query
SELECT id, MATCH(col1, col2) AGAINST ('"255-381"' IN BOOLEAN MODE) AS match1
FROM ftx_utf8
HAVING match1 > 0
does not return rows 1 and 2 as expected.
How can I match 255-381 with MySQL Fulltext search?
The odd thing is that a customer claims it worked before. But last week we did an update of his database from an early 5.0 installation to a 5.1.54 server (Windows).