5 lines
226 B
MySQL
5 lines
226 B
MySQL
|
INSERT INTO realtor (
|
||
|
id, name, bio, phone_number, email, profile_picture_url, show_projects, shortcode, remax_agent_id, time_created, last_updated
|
||
|
) VALUES (
|
||
|
$1, $2, $3, $4, $5, $6, $7, $8, $9, $10, $10
|
||
|
) RETURNING *;
|