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
This creates the index. Is this what you want?
ALTER TABLE table ADD FULLTEXT index_name(column1, column2);