1internet Posted November 27, 2012 Share Posted November 27, 2012 I want to be able to search my entire site over all the tables, e.g. restaurants, entertainment, hotels, etc. How is this done? Also what if I wanted to search through more than one clolumn, e.g. title and body, and then further, what if I wanted to rank the ones that contained the search query in the title, ahead of the ones in the body? Quote Link to comment Share on other sites More sharing options...
NomadicJosh Posted November 27, 2012 Share Posted November 27, 2012 To get you started, your query could start as mysql_query( "SHOW TABLES FROM name_of_database" ); or mysql_query( "SELECT * FROM information_schema.`COLUMNS` C WHERE TABLE_SCHEMA = 'YOUR_DATABASE'" ); Quote Link to comment Share on other sites More sharing options...
fenway Posted November 30, 2012 Share Posted November 30, 2012 You want a proper fulltext index -- MySQL isn't really good at that -- check out Sphinx. 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.