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

5 lines
251 B
MySQL
Raw Normal View History

2023-05-03 17:50:59 +00:00
INSERT INTO realtor (
2023-05-11 15:31:58 +00:00
id, name, bio, phone_number, email, profile_picture_url, banner_picture_url, show_projects, shortcode, remax_agent_id, time_created, last_updated
2023-05-03 17:50:59 +00:00
) VALUES (
2023-05-11 15:31:58 +00:00
$1, $2, $3, $4, $5, $6, $7, $8, $9, $10, $11, $11
2023-05-03 17:50:59 +00:00
) RETURNING *;