+ " left outer join library.artisttoptrackplaycount attpc"
+ " on attpc.artist_id = att.artist_id and attpc.rank = att.rank"
+ " where att.artist_id = ? order by att.rank limit ?";
return jdbcTemplate.query(sql, new Object[]{artistId, limit},
new TrackRowMapper());
}