write a query to display the patient id patient first name whose reason for appointment is fever (sql)
Answers
Answered by
1
it is your answer I hope it will help you
Attachments:
Answered by
0
Answer:
Display the patient id patient first name whose reason for appointment is fever (sql)
SQL QUERY:
By running this query, you can find out this information.
select patient_id,
Patient_first_name
from patient where patient_appointment='Fever;
#SPJ3
Similar questions