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 ; Quote Link to comment 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); Quote Link to comment Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.