Files
hospital-server/queries/create_patient.sql

4 lines
74 B
MySQL
Raw Normal View History

2025-11-18 18:26:20 +03:00
insert into patients ("full_name", "phone")
values($1,$2)
returning "id";