1
0
mirror of https://github.com/actix/examples synced 2025-06-26 17:17:42 +02:00
Files
examples/databases/postgres/sql/add_user.sql
2022-02-18 02:01:48 +00:00

4 lines
115 B
SQL

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