4 lines
62 B
MySQL
4 lines
62 B
MySQL
|
|
update patients
|
||
|
|
set full_name = $2, phone = $3
|
||
|
|
where id = $1;
|