NevadaSam Posted May 24, 2007 Share Posted May 24, 2007 When I CREATEd the table this is how I set up the indexes. When ever the database is searched, I want the search to include all the data in both column. How should I set it up to search both columns? FULLTEXT KEY `col1` (`col1`), FULLTEXT KEY `col2` (`col2`) Sam ; Link to comment https://forums.phpfreaks.com/topic/52888-creating-fulltext-key/ Share on other sites More sharing options...
bubblegum.anarchy Posted May 25, 2007 Share Posted May 25, 2007 Probably the following: ALTER TABLE table AND FULLTEXT FT_DESCRIPTION (column1, column2); Link to comment https://forums.phpfreaks.com/topic/52888-creating-fulltext-key/#findComment-261248 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.