思路:使用AS
关键字重命名
代码解释:基本与上题相同,只不过要将device_id
列重命名为user_infos_example
SELECT
device_id AS user_infos_example
FROM
user_profile
WHERE
id = 1
OR id = 2;
原创文章,作者:wure,如若转载,请注明出处:https://blog.ytso.com/tech/database/273542.html