题解 | 将查询后的列重新命名
将查询后的列重新命名
https://www.nowcoder.com/practice/0d8f49aeaf7a4e1cb7fecec980712113
select device_id as user_infos_example from user_profile limit 2;
用 AS 来对列名 进行重命名,放在原来的列名之后
将查询后的列重新命名
https://www.nowcoder.com/practice/0d8f49aeaf7a4e1cb7fecec980712113
select device_id as user_infos_example from user_profile limit 2;
用 AS 来对列名 进行重命名,放在原来的列名之后
相关推荐