bl-backend/sql/contact/insert.sql

5 lines
118 B
MySQL
Raw Permalink Normal View History

2023-04-30 18:32:34 +00:00
INSERT INTO contact (
id, name, credential, message, time_created
) VALUES (
$1, $2, $3, $4, $5
) RETURNING *;