mysql MATCH AGAINST with LIMIT

56 Views Asked by At

everybody I'm querying a huge table, trying to find the first 100 most recent record matching a town (in this example Venice): select id from table_name where MATCH(column_name) AGAINST (string_to_search) order by date_created DESC limit 100. It definitely ignores the LIMIT instruction and the query is so slow. Can someone help me in setting a LIMIT in a query with a MATCH AGAINST in where condition? thanks a lot!

0

There are 0 best solutions below