I would like to retrieve all comments and like on user photos. It shouldn't be specific album photos. I tried something like this, but it did not work.
SELECT fromid, user_likes, comments FROM comment
WHERE object_id IN (
SELECT object_id FROM photo
WHERE aid IN (
SELECT aid FROM album
WHERE owner=me()))