sridhar golyandla Posted March 20, 2009 Share Posted March 20, 2009 Hi 2 all, Please how to search the variable in a table with multiple columns using php and mysql EG: table1 having the columns like col1, col2, col3, col4..... how search the value in coln? Quote Link to comment https://forums.phpfreaks.com/topic/150301-multiple-search/ Share on other sites More sharing options...
phpretard Posted March 20, 2009 Share Posted March 20, 2009 I found this useful after reading: http://php.about.com/od/phpwithmysql/ss/php_search.htm Quote Link to comment https://forums.phpfreaks.com/topic/150301-multiple-search/#findComment-789367 Share on other sites More sharing options...
phant0m Posted March 20, 2009 Share Posted March 20, 2009 It depends... Do you want the result to match the search string entered exactly? Or does the search string have to be somewhere in the result? This would return all results where $search is somewhere in coln SELECT * FROM table WHERE coln LIKE '%$search%' Make sure to escape $search properly before putting it into a query Quote Link to comment https://forums.phpfreaks.com/topic/150301-multiple-search/#findComment-789371 Share on other sites More sharing options...
sridhar golyandla Posted March 20, 2009 Author Share Posted March 20, 2009 i tried with that link a long back ago... but it was not working properly with my application.... How to search the value whether it has in col1, col2...... to con n SELECT DISTINCT r.rid, r.email, s.col1, s.col2, s.col3, s.col4, s.col5 FROM register r, skill s WHERE s.col1 LIKE '%PHP%' OR s.col2 LIKE '%PHP%' OR s.col3 LIKE '%PHP%' OR s.col4 LIKE '%PHP%' OR s.col5 LIKE '%PHP%' AND s.rid= r.rid; getting duplicate values. please help me out. Quote Link to comment https://forums.phpfreaks.com/topic/150301-multiple-search/#findComment-789373 Share on other sites More sharing options...
kickstart Posted March 20, 2009 Share Posted March 20, 2009 Hi That should work without duplicates. The duplicates may be becuase rid is not unique on register or skill. All the best Keith Quote Link to comment https://forums.phpfreaks.com/topic/150301-multiple-search/#findComment-789388 Share on other sites More sharing options...
redarrow Posted March 20, 2009 Share Posted March 20, 2009 try grouping them. SELECT DISTINCT r.rid, r.email, s.col1, s.col2, s.col3, s.col4, s.col5 FROM register r, skill s WHERE (s.col1 LIKE '%PHP%') OR (s.col2 LIKE '%PHP%') OR (s.col3 LIKE '%PHP%') OR (s.col4 LIKE '%PHP%') OR (s.col5 LIKE '%PHP%') AND s.rid= r.rid; Quote Link to comment https://forums.phpfreaks.com/topic/150301-multiple-search/#findComment-789401 Share on other sites More sharing options...
kickstart Posted March 20, 2009 Share Posted March 20, 2009 Hi Seen an error:- SELECT DISTINCT r.rid, r.email, s.col1, s.col2, s.col3, s.col4, s.col5 FROM register r, skill s WHERE (s.col1 LIKE '%PHP%' OR s.col2 LIKE '%PHP%' OR s.col3 LIKE '%PHP%' OR s.col4 LIKE '%PHP%' OR s.col5 LIKE '%PHP%') AND s.rid= r.rid; How you had the SQL the last like statement would be ANDed with the s.rid = r.rid, which would mess up the table join. Probably better would be:- SELECT DISTINCT r.rid, r.email, s.col1, s.col2, s.col3, s.col4, s.col5 FROM register r JOIN skill s ON s.rid= r.rid WHERE s.col1 LIKE '%PHP%' OR s.col2 LIKE '%PHP%' OR s.col3 LIKE '%PHP%' OR s.col4 LIKE '%PHP%' OR s.col5 LIKE '%PHP%'; All the best Keith Quote Link to comment https://forums.phpfreaks.com/topic/150301-multiple-search/#findComment-789408 Share on other sites More sharing options...
sridhar golyandla Posted March 20, 2009 Author Share Posted March 20, 2009 Thanks kickstart It is working fine with two tables, if it is more than two table... it was not working well... getting empty rows... i checked all the tables with r.rid, all tables having the rows values of corresponding r.rid, Plz help me out..... Quote Link to comment https://forums.phpfreaks.com/topic/150301-multiple-search/#findComment-789419 Share on other sites More sharing options...
kickstart Posted March 20, 2009 Share Posted March 20, 2009 Hi Can you post the sql that is not working with more than 2 tables? Alll the best Keith Quote Link to comment https://forums.phpfreaks.com/topic/150301-multiple-search/#findComment-789422 Share on other sites More sharing options...
sridhar golyandla Posted March 20, 2009 Author Share Posted March 20, 2009 SELECT DISTINCT r.rid, r.email, s.col1, s.col2, s.col3, s.col4, s.col5, q.col1, j.col1, c.col1 FROM register r JOIN skill s ON s.rid= r.rid join qal q on q.rid=r.rid join job j on j.rid=r.rid join col c on c.rid=r.rid WHERE s.col1 LIKE '%PHP%' OR s.col2 LIKE '%PHP%' OR s.col3 LIKE '%PHP%' OR s.col4 LIKE '%PHP%' OR s.col5 LIKE '%PHP%'; Quote Link to comment https://forums.phpfreaks.com/topic/150301-multiple-search/#findComment-789458 Share on other sites More sharing options...
kickstart Posted March 20, 2009 Share Posted March 20, 2009 Hi That looks like it should work. However I would suspect the issue might be that rid is not unique on one of those tables, hence bringing back rows that duplicated (eg, say table job had 2 rows for an rid of 1, yet these rows had the same value of coll but possibly a different value of another column you would get a full duplicate row). All the best Keith Quote Link to comment https://forums.phpfreaks.com/topic/150301-multiple-search/#findComment-789471 Share on other sites More sharing options...
sridhar golyandla Posted March 21, 2009 Author Share Posted March 21, 2009 Thank you alot kickstart.... It is working, now prob has solved.... Quote Link to comment https://forums.phpfreaks.com/topic/150301-multiple-search/#findComment-790106 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.