gpt4 book ai didi

sql - 使用 postgreSQL 数据库查询

转载 作者:行者123 更新时间:2023-11-29 12:49:15 26 4
gpt4 key购买 nike

我已经有一个postgresql创建的数据库(不是我的另一个管理员提供的),创建命令如下图

CREATE TABLE "Districts" (
"Name" character varying(500),
"ProvinceCode" text
);

查询 Insert value to my table 如下:

Insert into Districts (Name,ProvinceCode) values ("Abc","Xyz"); `ERROR:  relation "districts" does not exist`

我也试过:

Insert into "Districts" (Name,ProvinceCode) values ("Abc","Xyz"); `ERROR:  column "name" of relation "Districts" does not exist`

和:

Insert into "Districts" ("Name","ProvinceCode") values ("Abc","Xyz"); `ERROR:  column "Abc" does not exist`

我不知道语法是如何正确的。我真的需要有人帮忙。

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