scrubbicus Posted April 26, 2009 Share Posted April 26, 2009 I'm trying to make a quick search that searches all the fields within a table with LIKE statement. How might I go about doing that? I was trying this: I have two fields called lecture and book and I want to search in that for the word man so I made something like this SELECT * FROM table WHERE lecture OR book LIKE %man% But it gave me no results at all when man was present in both fields for much of the information in there Link to comment https://forums.phpfreaks.com/topic/155690-php-mysql-statements-where-name-or-section-like-this/ Share on other sites More sharing options...
ToonMariner Posted April 26, 2009 Share Posted April 26, 2009 SELECT * FROM table WHERE lecture LIKE '%man%' OR book LIKE '%man%' Link to comment https://forums.phpfreaks.com/topic/155690-php-mysql-statements-where-name-or-section-like-this/#findComment-819469 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.