When I run the following not all the records diplay a value in the Title field:
SELECT
Users.DisplayName,
Posts.OwnerDisplayName,
Posts.Title,
Posts.Score
FROM
Posts
INNER JOIN Users ON Posts.OwnerUserId = Users.id
WHERE
Users.DisplayName = 'whytheq'
ORDER BY 4 desc
Why is this?