Selectively Importing Data

Поиск
Список
Период
Сортировка
От David Blomstrom
Тема Selectively Importing Data
Дата
Msg-id CAA54Z0ju5m6D2MDiuaa-_dOttKQoNzrup_diKJ=OqQhGxT_Q+w@mail.gmail.com
обсуждение исходный текст
Ответы Re: Selectively Importing Data
Re: Selectively Importing Data
Список pgsql-general
First consider the following table:

create table taxon (

  taxonid serial,
  descr text
);

As I understand it, "serial" means that column will automatically populate with a numerical key.

If I want to fill the field 'descr' with a list of scientific names stored in a spreadsheet, then how would I proceed?

I have a spreadsheet that has about a dozen columns. I copied the field with scientific names into a new spreadsheet. Then I created an empty field on the left. So I have a spreadsheet with two columns. I saved it as a CSV file.

When I try to import it with pgAdmin III, I get the error message

WARNING: null value in column "taxonid" violates non-null constraint

How can I import that single column into the second column in this table? Thanks.

В списке pgsql-general по дате отправления:

Предыдущее
От: David Blomstrom
Дата:
Сообщение: Re: Hierarchical Query Question (PHP)
Следующее
От: Stephen Davies
Дата:
Сообщение: Upgrade from 9.3 to 9.4 issue