gpt4 book ai didi

mariadb - 更改 MariaDB 中的列名称

转载 作者:行者123 更新时间:2023-12-02 06:30:49 32 4
gpt4 key购买 nike

我在该数据库中有此列,其中包含空格键,我想更改它。

ALTER TABLE . CHANGE COLUMN `Anzahl Personen` AnzahlPersonen int(11); 

在命令行中使用此行后,输出如下:

ERROR 1064 (42000): You have an error in your SQL syntax; check the manual that corresponds to your MariaDB server version for the right syntax to use near 'CHANGE COLUMN `Anzahl Personen` AnzahlPersonen int(11)' at line 1

是的,我不知道我做错了什么。

最佳答案

如果您使用点 (.) 而不是表名,这就是出现错误的原因。您必须指定表名称:

ALTER TABLE `table_name` CHANGE COLUMN `Anzahl Personen` AnzahlPersonen int(11);

关于mariadb - 更改 MariaDB 中的列名称,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/28507987/

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