hello everyone,
Please consider the following SQL script -
For this SQL script, I get the error messages - "multi-part identifier could not be found"Code:use PatientCare go select pr.PatientId, p.FirstName,p.LastName, m.Name from Prescription as pr inner join Patient as p inner join Medicine as m on p.PatientId = pr.PatientId on pr.MedicineCode = m.MedicineCode;
Please help,,,,,,,
Bookmarks