Re: Recursive Arrays 101

Поиск
Список
Период
Сортировка
От David Blomstrom
Тема Re: Recursive Arrays 101
Дата
Msg-id CAA54Z0g4wyoM_8bqvM9wLqaAFPSdceE7cdgB06nKhaPX+tH7NA@mail.gmail.com
обсуждение исходный текст
Ответ на Re: Recursive Arrays 101  (Adrian Klaver <adrian.klaver@aklaver.com>)
Список pgsql-general
OK, I figured out how to drop the primary key and change the NULLS. So it looks like this now:

CREATE TABLE public.gz_life_mammals
(
  id integer NOT NULL,
  taxon text NOT NULL,
  parent text NOT NULL,
  slug text,
  namecommon text,
  plural text,
  extinct smallint NOT NULL,
  rank smallint NOT NULL,
  key smallint NOT NULL,
  CONSTRAINT "Unique Key" UNIQUE (taxon)
)
WITH (
  OIDS=FALSE
);
ALTER TABLE public.gz_life_mammals
  OWNER TO postgres;

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

Предыдущее
От: Gavin Flower
Дата:
Сообщение: Re: Importing CSV File
Следующее
От: Aaron_Wright@selinc.com
Дата:
Сообщение: PAM LDAP CREATE USER