पूर्ण पाठ अनुक्रमणिका जोड़ें उन सभी तालिकाओं के सभी स्ट्रिंग स्तंभों में, फिर परिणामों को संघटित करें
select * from table1 where match(col1, col2, col3) against ('some string')
union all
select * from table2 where match(col1, col2) against ('some string')
union all
select * from table3 where match(col1, col2, col3, col4) against ('some string')
...