Optional
lastThe last inserted id
.
This value is not set for Postgres databases. If the
last inserted id is required on Postgres, the select
function
must be used, with a RETURNING
clause
(INSERT INTO todos (title) VALUES ($1) RETURNING id
).
The number of rows affected by the query.