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 Quote 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. Quote 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
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.