I am running the following query on tbl_query
tbl_query
select * from tbl_query q where match(q.query_desc,q.query_desc_details) against (\'test1\' WITH QUERY
Fulltext with 2 columns you create like this
2
ALTER TABLE tbl_query ADD FULLTEXT INDEX `FullText` (`query_desc` ASC, `query_desc_details` ASC);