remax-backend-rs/sql/location/insert.sql

5 lines
133 B
SQL

INSERT INTO location (
id, country, province, city, district, google_maps_url
) VALUES (
$1, $2, $3, $4, $5, $6
) RETURNING *