select a.user_name ,b.timestr,b.kills from user1 a join user_kills b on a.id=b.user_id where b.kills =(select MAX (c.kill)from user_kills c where c.user_id=b.user_id);
其中c是哪个表?为什么要用c?
c 是select MAX(c.kill) from user_kills c where c.user_id = b.user_id 这部分sql语句的,使用c是因为多张表关联查询或者是有子查询的时候使用别名便于区分