bạn cần phải áp dụng tối đa (ID nhận xét) trên mỗi ảnh (giả sử ID nhận xét được tự động tăng và do đó luôn được thêm gần đây nhất vào bảng)
select
p.*,
tbc.Comment
from
tb_photos p
LEFT JOIN ( select c.photos_id,
max( c.id ) lastCommentPerPhoto
from
tb_comments c
group by
c.photos_id
order by
c.Photos_id ) LastPhotoComment
on p.id = LastPhotoComment.photos_id
LEFT JOIN tb_comments tbc
on LastPhotoComment.LastCommentPerPhoto = tbc.id