10 lines
145 B
SQL
10 lines
145 B
SQL
insert into patients(
|
|
"full_name",
|
|
"phone"
|
|
)
|
|
values($1, $2)
|
|
returning
|
|
"id",
|
|
"full_name" as "full_name!",
|
|
"phone" as "phone!"
|