Possible Duplicate:
Calculate MATCH() AGAINST() scores from UNIFIED QUERY not FOR EACH TABLE
I want to have a FULLTEXT INDEX on data name in the base SELECT that selects data from another SELECT which unions several tables.
SELECT `data` FROM SELECT (
SELECT `name` as `data` FROM `names`
UNION SELECT `title` as `data` FROM `titles`
) as `search`
I want data to have a FULLTEXT INDEX
nameandtitleare fulltext indexes – dachints Dec 17 '12 at 11:53nameandtitle. Then what is the question? – dezso Dec 17 '12 at 11:55nameandtitleare indexed as FULLTEXT. I wantdatato have a FULLTEXT index as well. But there won't be such column asdatain phpmyadmin to make it FULLTEXT in traditional way. Question is HOW TO MAKEdataindexed as FULLTEXT – dachints Dec 17 '12 at 11:59