1
0
mirror of https://github.com/actix/examples synced 2024-11-23 22:41:07 +01:00
examples/async_pg/sql/add_user.sql
2020-01-15 19:19:15 -05:00

4 lines
115 B
SQL

INSERT INTO testing.users(email, first_name, last_name, username)
VALUES ($1, $2, $3, $4)
RETURNING $table_fields;