题解 | #查询结果去重#
将查询后的列重新命名
http://www.nowcoder.com/practice/0d8f49aeaf7a4e1cb7fecec980712113
两种办法
##查看前两个用户,使用in
##SELECT device_id as user_infos_example from user_profile limit 0,2;
select device_id as user_infos_example from user_profile where id in (1,2);