"Stanislaw Tristan" <stas7775(at)i(dot)com(dot)ua> writes:
> It's 2 commands, but executing only first. Why?
You didn't show us the view, but I suppose it's an inner join of the two
tables? As soon as you delete the row from the first table, there's no
longer any matching row in the view, so the second command finds no OLD
row to join against.
Consider making the view a LEFT JOIN and being sure to delete from the
righthand table first.
regards, tom lane