Hi, I need a quick MySQL fix. For some reason this query is giving no results even though there is atleast 1 entry with the feeds.from = 1 SELECT feeds.id,feeds.text,feeds.from,feeds.to,feeds.time FROM `feed_replies`,`feeds`,`friendships` WHERE ((feeds.from = '1') OR (feeds.to = '1') OR (friendships.from = '1' AND feeds.to = friendships.to) OR (feed_replies.from = '1' AND feed_replies.feed_id = feeds.id)) AND feeds.not_allowed NOT LIKE '%|1|%' ORDER BY feeds.time DESC LIMIT 15 Code (markup): Thanx.