bsamson Posted May 16, 2008 Share Posted May 16, 2008 Is it possible to have too many WHERE, AND statements in one query? Example: SELECT * FROM v2followups WHERE store='11' AND (DATE_FORMAT(FROM_UNIXTIME(`day15`), '%Y/%m/%d') = '2008/05/16' AND day15status != 'c') OR (DATE_FORMAT(FROM_UNIXTIME(`day45`), '%Y/%m/%d') = '2008/05/16' AND day45status != 'c') OR (DATE_FORMAT(FROM_UNIXTIME(`day90`), '%Y/%m/%d') = '2008/05/16' AND day90status != 'c') AND cbtype='f' (The above query was ran in phpMyAdmin) All seems to work EXCEPT it also returns entries where cbtype='c'. Any suggestions as to why this isn't working? Thanks in advance! Link to comment https://forums.phpfreaks.com/topic/105944-solved-too-many-where-ands-in-query/ Share on other sites More sharing options...
p2grace Posted May 16, 2008 Share Posted May 16, 2008 Try this: <?php SELECT * FROM v2followups WHERE store='11' AND ((DATE_FORMAT(FROM_UNIXTIME(`day15`), '%Y/%m/%d') = '2008/05/16' AND day15status != 'c') OR (DATE_FORMAT(FROM_UNIXTIME(`day45`), '%Y/%m/%d') = '2008/05/16' AND day45status != 'c') OR (DATE_FORMAT(FROM_UNIXTIME(`day90`), '%Y/%m/%d') = '2008/05/16' AND day90status != 'c')) AND cbtype='f' ?> Link to comment https://forums.phpfreaks.com/topic/105944-solved-too-many-where-ands-in-query/#findComment-542930 Share on other sites More sharing options...
bsamson Posted May 16, 2008 Author Share Posted May 16, 2008 Thanks p2grace!!!! Link to comment https://forums.phpfreaks.com/topic/105944-solved-too-many-where-ands-in-query/#findComment-542937 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.