gpt4 book ai didi

mysql - 重命名 SQL 中的列

转载 作者:太空宇宙 更新时间:2023-11-03 11:43:51 26 4
gpt4 key购买 nike

我想(直接)生成一个表格,其中包含另一个表格的 2 列的内容。如何更改列的名称(在新表中重命名)?

这是一个例子:

CREATE TABLE X AS
SELECT
Table1.name,
Table1.act
FROM Y

->我不想像在原始表中那样命名列“name”和“act”——我想将“name”替换为“customer”,将“act”替换为“status”

最佳答案

这样做:

CREATE TABLE X AS
SELECT
Table1.name as customer,
Table1.act as status
FROM Y

关于mysql - 重命名 SQL 中的列,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/39999128/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com