Re: Insert data if it is not existing

Поиск
Список
Период
Сортировка
От David G. Johnston
Тема Re: Insert data if it is not existing
Дата
Msg-id CAKFQuwbovigqheUFx04dr41+H6DbNsRW_meB-w072SFeAPj7vg@mail.gmail.com
обсуждение исходный текст
Ответ на Insert data if it is not existing  (tango ward <tangoward15@gmail.com>)
Ответы Re: Insert data if it is not existing  (Adrian Klaver <adrian.klaver@aklaver.com>)
Список pgsql-general
On Wednesday, May 23, 2018, tango ward <tangoward15@gmail.com> wrote:
I just want to ask if it's possible to insert data if it's not existing yet.

This seems more like a philosophical question than a technical one...
​but the answer is yes:

CREATE TABLE test_t (a varchar, b varchar, c integer);
INSERT INTO test_t
SELECT '1', '2', 3 WHERE false;​ --where false causes the data to effectively "not exist"

As for ON CONFLICT: conflicts can only happen between things that exist.

David J.

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

Предыдущее
От: "a"
Дата:
Сообщение: Re: RE: RE: How do I select composite array element that satisfyspecific conditions.
Следующее
От: Andres Freund
Дата:
Сообщение: Re: Error on vacuum: xmin before relfrozenxid