MySQL Forums
Forum List  »  Performance

Re: Adding keyword search (fulltext) to query
Posted by: Marc Ferland
Date: October 27, 2012 09:30AM

SELECT `id`
FROM (
	(
		SELECT  `listing_id` AS `id`
		FROM  `descriptions_test`
		WHERE  MATCH (`descriptions_test`.`description`)
		AGAINST ('swimming pool' IN BOOLEAN MODE)
	)
	UNION (
		SELECT `id`
		FROM  `listings`
		WHERE  `listings`.`category` = 1
		AND  `listings`.`city` = 35862
		AND  `listings`.`visible` = 1
	)
) AS `a`
GROUP BY `a`.`id`
HAVING  COUNT(*) = 2;

If that's correct, is ran in 45.8355 sec

Options: ReplyQuote


Subject
Views
Written By
Posted
Re: Adding keyword search (fulltext) to query
815
October 27, 2012 09:30AM


Sorry, you can't reply to this topic. It has been closed.

Content reproduced on this site is the property of the respective copyright holders. It is not reviewed in advance by Oracle and does not necessarily represent the opinion of Oracle or any other party.