realtor-lp-backend/sql/realtor/insert.sql

5 lines
226 B
MySQL
Raw Normal View History

2023-05-03 17:50:59 +00:00
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 *;