5 lines
86 B
MySQL
5 lines
86 B
MySQL
|
INSERT INTO location (
|
||
|
id, city, district
|
||
|
) VALUES (
|
||
|
$1, $2, $3
|
||
|
) RETURNING *;
|