'bad', 'tobyink' SELECT me.poem_id, me.artwork_id, me.meter, me.rhyme, artwork.artwork_id, artwork.artist_id, artwork.name, artwork.year, artist.artist_id, artist.name, artist.country_id, country.country_id, country.iso_code, country.name, country.language_id, comments.comment_id, comments.user_id, comments.artwork_id, comments.text, user.user_id, user.country_id, user.name, country_2.country_id, country_2.iso_code, country_2.name, country_2.language_id FROM poem me JOIN artwork artwork ON artwork.artwork_id = me.artwork_id JOIN artist artist ON artist.artist_id = artwork.artist_id JOIN country country ON country.country_id = artist.country_id LEFT JOIN comment comments ON comments.artwork_id = artwork.artwork_id LEFT JOIN user user ON user.user_id = comments.user_id LEFT JOIN country country_2 ON country_2.country_id = user.country_id WHERE ( ( comments.text != ? AND country.name != country_2.name AND user.name = ? ) ) ORDER BY me.poem_id