Hi Team,
I was trying to search using Fulltext by the following query
select * from test where MATCH (TEST_NOTES) Against ('"New York"' in Boolean mode);on MYSQL server 5.7(used InnoDB engine), the problem that I faced is it also returns row where it found "York" instead of whole phrase which is incorrect but the same query I tried in MYSQL Server 5.5(used MyISAM engine) and it searched for the "New York" as whole word i.e phrase not as individual word and its working fine.
Please help me out as I have to use MySQL Server 5.7 and InnoDB engine for the table.
Regards,
Piyali
I was trying to search using Fulltext by the following query
select * from test where MATCH (TEST_NOTES) Against ('"New York"' in Boolean mode);on MYSQL server 5.7(used InnoDB engine), the problem that I faced is it also returns row where it found "York" instead of whole phrase which is incorrect but the same query I tried in MYSQL Server 5.5(used MyISAM engine) and it searched for the "New York" as whole word i.e phrase not as individual word and its working fine.
Please help me out as I have to use MySQL Server 5.7 and InnoDB engine for the table.
Regards,
Piyali