Re: delete rows

Поиск
Список
Период
Сортировка
От Stephan Szabo
Тема Re: delete rows
Дата
Msg-id Pine.BSF.4.21.0011291845150.39807-100000@megazone23.bigpanda.com
обсуждение исходный текст
Ответ на delete rows  ("Astrid Hexsel" <ahexse01@postoffice.csu.edu.au>)
Список pgsql-sql
On Thu, 30 Nov 2000, Astrid Hexsel wrote:

>  After trying for two weeks to delete more than one row at the time from a form
> - checkbox input, I was told that the only way different rows would be inputed
> or changed with the information from the form would be with the INSERT command.
> 
> 
> This way the best alternative I could think of, would be 
> to still have my table cart:
> For eaxmple:
> 
> session_id|range_id|colour_id|
> ------------------------------
> 122       | 4004-4 | 4002 
> 122       | 4004-4 | 4003
> 122       | 4004-4 | 4004
> 
> which contains all the items added to the cart.
> 
> Then when a deletion is required, the information from the form would be inserted
> into "cartchange table":
> For example:
> 
> session_id| colour_id|condition|
> ---------------------------------
> 122       | 4001   | yes
> 122       | 4002   | yes 
> 
> 
> Now what I am trying to do is to delete the rows
> from cart that appear in the cartchange table.
> 
> I have tried to join the tables , but I could not find the right query to delete
> similar rows.

Would a subselect work here?  something like...
delete from cart where exists (select * from cartchange wherecartchange.session_id=cart.session_id and
cartchange.colour_id=cart.colourid);



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

Предыдущее
От: "Astrid Hexsel"
Дата:
Сообщение: delete rows
Следующее
От: Joseph Shraibman
Дата:
Сообщение: alter table question