Add 'returning' method to non-select queries #2
Loading…
Reference in New Issue
Block a user
No description provided.
Delete Branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
PostgreSQL has a 'returning' clause that can be used in insert, update, and delete queries to return the data from the affected rows.
Implement this functionality, with a fallback for DB engines that do not support a similar syntax.