select a.user_name, b.timestr, b.kills from user1 a join user_kills b on a.id = b.user_id group by a.user_name HAVING b.kills = MAX(b.kills)
实际就是两条数据