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 !
The short answer is there’s nothing wrong with your query, so
or
or
Try just querying on one criterion at a time and see if you can norrow it down. Perhaps
follow_backis NULL?