5 lines
146 B
MySQL
5 lines
146 B
MySQL
|
INSERT INTO contact_info (
|
||
|
agent_id, phone_number, email, profile_picture_url, default_message
|
||
|
) VALUES (
|
||
|
$1, $2, $3, $4, $5
|
||
|
) RETURNING *
|