insert order question

Поиск
Список
Период
Сортировка
От Gauthier, Dave
Тема insert order question
Дата
Msg-id 482E80323A35A54498B8B70FF2B879800493F1FE15@azsmsx504.amr.corp.intel.com
обсуждение исходный текст
Ответы Re: insert order question
Re: insert order question
Список pgsql-general

Hi:

 

Does...

 

               insert into mytbl (col1) values ('a'),('b'),('c');

 

... insert records 'a','b','c' in that order while...

 

               insert into mytbl (col1) values ('c'),('b'),('a');

 

... insert the records in the opposite order?

 

The order matters because there are triggers on the table which will react differently depending on what's already in the table.

 

Thanks in Advance !

 

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

Предыдущее
От: Scott Marlowe
Дата:
Сообщение: Re: Massive delete from a live production DB
Следующее
От: "David Johnston"
Дата:
Сообщение: Re: How to handle bogus nulls from ActiveRecord