Blurbs ansible coffeescript django dvcs erlang es6 hg javascript json lua mercurial peewee postgresql python scope sql sqlalchemy yaml

RETURNING code postgresqlsqljson

UPDATE questions SET bounty = bounty * 2 WHERE id = 5432
RETURNING bounty;

WITH upd AS (
  UPDATE employees SET sales_count = sales_count + 1 WHERE id = 1
  RETURNING *
)
INSERT INTO elog SELECT row_to_json(upd), current_timestamp FROM upd;