удалить данные которые были вставлены. Я так понял это и было ошибкой? Данные которые не затрагиваются как раз норм должны удаляться?
> Я так понял это и было ошибкой? А, понял. Да, это ошибка, Вам правильно сказали. И это описано в документации: https://www.postgresql.org/docs/current/queries-with.html#QUERIES-WITH-MODIFYING А именно: The sub-statements in WITH are executed concurrently with each other and with the main query. Therefore, when using data-modifying statements in WITH, the order in which the specified updates actually happen is unpredictable. All the statements are executed with the same snapshot (see Chapter 13), so they cannot “see” one another's effects on the target tables. This alleviates the effects of the unpredictability of the actual order of row updates, and means that RETURNING data is the only way to communicate changes between different WITH sub-statements and the main query.
Обсуждают сегодня