Re: UPDATE COMPATIBILITY
| От | Thomas Kellerer |
|---|---|
| Тема | Re: UPDATE COMPATIBILITY |
| Дата | |
| Msg-id | jf3cl1$bap$1@dough.gmane.org обсуждение исходный текст |
| Ответ на | UPDATE COMPATIBILITY (Gera Mel Handumon <geramel.h@gmail.com>) |
| Ответы |
Re: UPDATE COMPATIBILITY
Re: UPDATE COMPATIBILITY |
| Список | pgsql-sql |
Gera Mel Handumon, 17.01.2012 07:31: > What version of postgresql that the update compatibility below will be > implemented? > > UPDATE COMPATIBILITY > > > UPDATE accounts SET (contact_last_name, contact_first_name) = > (SELECT last_name, first_name FROM salesmen > WHERE salesmen.id = accounts.sales_id); None as far as I know. You need to rewrite it to: UPDATE accounts SET contact_last_name = s.last_name, contact_first_name = s.first_name FROM salesmen s WHERE s.id = accounts.sales_id
В списке pgsql-sql по дате отправления: