ansharma Posted June 15, 2011 Share Posted June 15, 2011 Hi all I have a table named `location` and have two fields `location_name` and `location_code`. engine MYISAM, mysql version 5.5.8 location_name varchar(50), location_code varchar(100) i want to store multiple location_code with comma separated values like this INSERT INTO `location` VALUES ('first location','01,05,08') , ('second location','02,04,07') now if i want to search for all `location_name` where `location_code` are 01, 02, and any other code. is there any way to search using in(), match against, any other but without using LIKE add any index accordingly Thanks Link to comment https://forums.phpfreaks.com/topic/239425-searching-in-a-diffrent-way/ Share on other sites More sharing options...
trq Posted June 15, 2011 Share Posted June 15, 2011 You would be much better off storing your data properly and not using comma separated values. Link to comment https://forums.phpfreaks.com/topic/239425-searching-in-a-diffrent-way/#findComment-1229970 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.