up vote 1 down vote favorite
share [g+] share [fb]

in my database i have 10 records with almost exact same data , they differ only by one field ( the field is not in the query) and when i run the following query

SELECT * FROM friends WHERE user_id= 'MyUserName' AND follow_back = 0 AND until_date= '2009-10-13'  LIMIT 12

it shows only 9 records , any one stumbled upon similar problem ? Thanks & waiting for your answers !

link|improve this question

Please post the results you are expecting to see and the results you are actually seeing. – James McNellis Oct 13 '09 at 16:50
You might want to try this query with LIMIT 0, 12 instead of LIMIT 12 and tell us if this makes a difference. – flokra Oct 13 '09 at 16:53
@flokra: LIMIT 12 is fine – Draemon Oct 13 '09 at 16:54
@Dreamon Ahh, thanks. Wasn't sure about that. – flokra Oct 13 '09 at 16:56
wouldn't that show form 0 to 12 , my idea is to display 12 records only , no matter what number are they – Aviatrix Oct 13 '09 at 16:56
show 1 more comment
feedback

4 Answers

up vote 4 down vote accepted

The short answer is there's nothing wrong with your query, so

user_id!='MyUserName'

or

follow_back != 0

or

until_date != '2009-10-13'

Try just querying on one criterion at a time and see if you can norrow it down. Perhaps follow_back is NULL?

link|improve this answer
ugh , yes , you are right , one of the records was NULL i didn't saw it thanks ! – Aviatrix Oct 13 '09 at 17:03
feedback

When trying to debug problems like these, what I would usually do is to try solving it using a divide and conquer approach.

So try and remove one where condition at a time, then execute the query. That way you will be able to isolate the offending condition.

Good luck

link|improve this answer
feedback

Are you sure, that all values in column user_id are the same? Maybe that one missing record has user_id = 'MyUserName ' (note the space).

link|improve this answer
Yes im sure cuz they are auto added :) – Aviatrix Oct 13 '09 at 16:54
I believe that MySQL automatically trims spaces from strings. SELECT 'test' = 'test ' returns 1. – Ian Clelland Oct 13 '09 at 17:55
@Ian: And you're right: if the column is a CHAR or VARCHAR data type, trailing space doesn't matter. See also dev.mysql.com/doc/refman/5.0/en/char.html – Piskvor Oct 23 '09 at 18:38
feedback

I had the same problem a minute ago. It turned out it wasn't the query that was the problem, but the IF where I check if anything's returned. Might want to check that.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.