Forum

SQL Query The Hospi...
 
Share:
Notifications
Clear all

SQL Query The Hospital has found a Replacement, a Patient named Hetty.


Posts: 1
Guest
Topic starter
(@I Yamaly)
New Member
Joined: 4 years ago

Query:

The hospital has found a replacement, a patient named Hetty. Change the appointment date of Hetty to that of Suzy's appointment date.

Instructions

The following relational schema forms part of a hospital database. The primary keys are underlined and foreign keys are in italics.

Tables:

Doctor (docID, docName, dateHired, monthlySalary, area, chargePerAppt, annualBonus)
Patient (patID, patName, dateOfBirth, nextAppDate, lastAppDate, docID)
Billing (patID, balance, due date, phone, address, city, street, postcode, insurance)

 

1 Reply
Posts: 18
Guest
(@A Sharma)
Active Member
Joined: 4 years ago

Here is the query to achieve the expected results.

Update Patient
Set nextApptDate = decode(patName, 'Suzy',
(Select nextApptDate from patient where patName = 'Hetty'),
'Hetty',
(Select nextApptDate from patient where patName = 'Suzy'))

Where patName in ('Suzy', 'Hetty');

 

Reply

Self Learning Video Tutorials - Software Course

Leave a reply

Author Name

Author Email

Title *

 
Preview 0 Revisions Saved
Share: