hi,
I have an issue that suppose
there are two tables say A and B where
A table have two column id and title
B Table have two column say e_id and metatag
so now we want to get all the data from A whose title contain a word say 'paris hilton' or metatag have 'paris hilton' need all those event.
so to resolve this i have written the query
it scan whole table so need an optemise way
Where all the used colomun are FULLTEXT
I have an issue that suppose
there are two tables say A and B where
A table have two column id and title
B Table have two column say e_id and metatag
so now we want to get all the data from A whose title contain a word say 'paris hilton' or metatag have 'paris hilton' need all those event.
so to resolve this i have written the query
Code:
select a.title,b.metatags
from A a INNER JOIN B b on b.e_id=a.id
where match(a.title) against ('paris hilton' IN NATURAL LANGUAGE MODE) or match(b.metatag) against ('paris hilton' IN NATURAL LANGUAGE MODE);
Where all the used colomun are FULLTEXT