gpt4 book ai didi

php - MySQL 错误编号 : 1064 in codeigniter

转载 作者:行者123 更新时间:2023-11-28 23:25:06 25 4
gpt4 key购买 nike

我想在 codeigniter 中创建一个 View 表,但出现错误 MySQL Error Number: 1064

$this->db->query('
CREATE VIEW totalamount AS
SELECT column amount, user
FROM transactions
WHERE user = 1
');

最佳答案

请记住空间不支持任何数据库列,例如您使用的列名列数量。现在它将有 column_amount

请遵循以下代码:

$this->db->query('CREATE VIEW totalamount AS
SELECT column_amount, user FROM transactions WHERE user = 1');

关于php - MySQL 错误编号 : 1064 in codeigniter,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/39696619/

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