Обсуждение: pg import text data to not null table comma error but semicolon right

Поиск
Список
Период
Сортировка

pg import text data to not null table comma error but semicolon right

От
王学敏
Дата:
Hi,
when i imort data from csv to table ,there may be some error
create table t(d1 text not null,d2 text not null,d3 text not null);

 \copy t(d1,d2,d3) from 'comma.text' with  delimiter ',';              
ERROR:  missing data for column "d2"
CONTEXT:  COPY t, line 1: "a;b;c"

 \copy t(d1,d2,d3) from 'semicolon.text' with  delimiter ';' ;
--no error
cat comma.text
a,b,c
e,,f

cat semicolon.text
a;b;c
e;;f