यह संभव है, लेकिन आपके पास टेक्स्ट इंडेक्स होना चाहिए।
mysql> alter table pages add fulltext index_text(shdescript);
mysql> alter table tags add fulltext index_text(tag);
SELECT * FROM 'pages' p
LEFT JOIN `tags` t
ON p.id = u.pageid
WHERE MATCH(p.shdescript,t.tag) AGAINST ('romance relationship')
मुझे लगता है कि यह काम करने के लिए काफी है।
संपादित करें:
MySQL 5.6 के अनुसार उपरोक्त पूर्ण टेक्स्ट खोज MyISAM और InnoDB स्टोरेज इंजन पर की जा सकती है। पहले के MySQL संस्करणों में केवल MyISAM तालिकाओं ने पूर्ण पाठ अनुक्रमणिका का समर्थन किया था।
http://dev.mysql.com/doc/refman /5.6/hi/fulltext-search.html