gpt4 book ai didi

postgresql - 列中的空值违反了非空约束 PostgreSQL

转载 作者:行者123 更新时间:2023-12-04 01:36:15 25 4
gpt4 key购买 nike

我正在尝试将 csv 导入 PostgreSQL 数据库表。当我执行以下查询时:

enter image description here

我的表名是trendmania_video

COPY public.trendmania_video FROM 'C:\Users\Shahnawaz Irfan\Desktop\0.csv' DELIMITER ',' CSV HEADER;

出现以下错误:
ERROR:  null value in column "v_id" violates not-null constraint
DETAIL: Failing row contains (null, null, UgzYr_WZlR73yFBnRdx4AaABAg, yar
kindly ap urdu m b toturial bna lety wordpress k liye to hma..., null, null,
null, null, null, null, null, null, null, null).
CONTEXT: COPY trendmania_video, line 10: ",,UgzYr_WZlR73yFBnRdx4AaABAg,yar
kindly ap urdu m b toturial bna lety wordpress k liye to hmari b he..."
SQL state: 23502

我也使用导入按钮手动尝试过,但发生了同样的错误。

最佳答案

在您的表 trendmania_video , 你有 v_id不为 null 导致此问题。您的一种选择是摆脱非空约束:

ALTER TABLE public.trendmania_video ALTER COLUMN v_id DROP NOT NULL;

如果这是一个新表,那么最好使用带有自动增加 id 的新表重新创建它。而 v_id是另一个值(value)。
CREATE TABLE trendmania_video(
id SERIAL PRIMARY KEY,
v_id VARCHAR
--the rest of the columns
);

关于postgresql - 列中的空值违反了非空约束 PostgreSQL,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/59430790/

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