5 lines
118 B
MySQL
5 lines
118 B
MySQL
|
INSERT INTO contact (
|
||
|
id, name, credential, message, time_created
|
||
|
) VALUES (
|
||
|
$1, $2, $3, $4, $5
|
||
|
) RETURNING *;
|