题解 | #将查询后的列重新命名#
将查询后的列重新命名
https://www.nowcoder.com/practice/0d8f49aeaf7a4e1cb7fecec980712113
select device_id from user_profile limit 2; alter table user_profile change column device_id user_infos_example int;
先查询前两列,然后用alter函数为列重新命名
将查询后的列重新命名
https://www.nowcoder.com/practice/0d8f49aeaf7a4e1cb7fecec980712113
select device_id from user_profile limit 2; alter table user_profile change column device_id user_infos_example int;
先查询前两列,然后用alter函数为列重新命名
相关推荐