# Returning in Postgres

* The <mark style="color:orange;">`returning`</mark> keyword is a way to return freshly inserted rows

```sql
INSERT INTO products (name, price, inventory) VALUES ('tortilla, 10, 10000) RETURNING;
```

* This should insert the new values and return them
*
