mazman13 Posted October 29, 2007 Share Posted October 29, 2007 My query looks like this. $query = "SELECT COUNT(quality) AS twriter FROM data WHERE quality='Y' AND date BETWEEN '$year-$month-00' AND '$year-$month-32' AND writer='Dusty'"; $result = mysql_query($query)or die(mysql_error()); $row = mysql_fetch_assoc($result); extract($row); echo"$twriter"; It should return with the number 6. But it returns 0. If I delete the Yellow part it brings back 7. Which is correct. What is wrong with the query? Everything is correct. I have 6 rows with the writer Dusty. If I update a row, it will timestamp that row and will show on the query. Could there be something wrong with the dates? It seems to only pull it if it was created on todays date. Quote Link to comment https://forums.phpfreaks.com/topic/75198-can-someone-help-me-with-a-mysql-query-trying-to-select-muilt-wheres/ Share on other sites More sharing options...
trq Posted October 29, 2007 Share Posted October 29, 2007 I can't even see the yellow part. We have [ code ][ /code ] tags for a reson. Quote Link to comment https://forums.phpfreaks.com/topic/75198-can-someone-help-me-with-a-mysql-query-trying-to-select-muilt-wheres/#findComment-380316 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.