Postgresql [RETURNING](https://www.postgresql.org/docs/9.5/dml-returning.html) ```sql INSERT INTO users (firstname, lastname) VALUES ('Joe', 'Cool') RETURNING id; UPDATE products SET price = price * 1.10 WHERE price <= 99.99 RETURNING name, price AS new_price; DELETE FROM products WHERE obsoletion_date = 'today' RETURNING *; ``` ```rust Err(ParserError("Expected end of statement, found: RETURNING")) ```