thetylercox Posted June 27, 2012 Share Posted June 27, 2012 I have the folloowing list orderfrom |Name --------------- ClearVision, Oakley, I-Deal Optics | ClearVision ClearVision, Oakley, I-Deal Optics |I-Deal Optics ClearVision, Oakley, I-Deal Optics |Oakley I want a querry that doesnt show these if name is in orderfrom example: orderfrom |Name --------------- ClearVision, Oakley, I-Deal Optics | ClearVision(Would NOT return this record) ClearVision, |I-Deal Optics(Would return this record) ClearVision, , |Oakley(Would return this record) I Tried the following! whats important is the very last part please over luck anything else you see as to its working! SELECT * FROM `dist` JOIN `patientacct` ON `patientacct`.dist LIKE CONCAT('%', `dist`.name ,'%') inner join `treasure` on `treasure`.`id` = `patientacct`.`id` where (status = 'To Order' and This part is where I need help!(( `dist`.name not like CONCAT('%',`patientacct`.orderfrom,'%')) )) order by `name` ASC IN need of help thanks to all! Going to eat will reply when i return if i get a helpful samaritan! Link to comment https://forums.phpfreaks.com/topic/264842-concat-help-with-querry/ Share on other sites More sharing options...
Barand Posted June 27, 2012 Share Posted June 27, 2012 try WHERE NOT INSTR(orderfrom, name) Link to comment https://forums.phpfreaks.com/topic/264842-concat-help-with-querry/#findComment-1357356 Share on other sites More sharing options...
thetylercox Posted June 27, 2012 Author Share Posted June 27, 2012 Thanks a million ahhhhhhhhhh thank you! Link to comment https://forums.phpfreaks.com/topic/264842-concat-help-with-querry/#findComment-1357430 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.