When I query the number of comments for a link using:
SELECT comment_count
FROM link_stat
WHERE url ='http://www.facebook.com/pages/K-F-C/337958765652'
I get 3 as result.
But when I query the contents of each comment using:
SELECT post_fbid, fromid, object_id, text, time FROM comment
WHERE object_id IN
(SELECT comments_fbid
FROM link_stat
WHERE url ='http://www.facebook.com/pages/K-F-C/337958765652')
I got empty result: []
Does anyone know what's going on? Thanks in advance!