+ " inner join music.track t on st.track_id = t.id"
+ " inner join music.artist a on t.artist_id = a.id"
+ " where not exists (select 1 from music.lovedtrack lt"
+ " where lt.lastfmuser_id = st.lastfmuser_id and lt.track_id = st.track_id)";
return jdbcTemplate.query(sql, new UserStarredTrackRowMapper());
}