• YES!!!!!!! I figured it out and it loaded! Could you please look over it and see if everything is right....it loaded correctly but who knows.

    Now for this I am curious if this is accurate.

    Also are these two queries right? The answers are made up as an example of what SHOULD pop up.

    "SELECT Employees.EmployeeID, Employees.Department, Location.City

    FROM EMPLOYEES

    INNER JOIN Location

    ON

    Employees.LocID = Location.LocID

    Where Employees.Department = "Nurse" and Location.City = "DeKab";

    1000 Nurse DeKalb

    SELECT PatientRecords.PatientID, PatientRecords.FirstName, PatientRecords.LastName, PatientRecords.DateofBirthBirthday

    FROM PatientRecords

    WHERE PatientRecords.Firstname = "Kevin";

    5 Kevin Smith 06271990

    SELECT PatientRecords.PatientID, PatientRecords.FirstName, PatientRecords.LastName, PatientRecords.DateofBirthBirthday

    FROM PatientRecords

    WHERE PatientRecords.Enthicity = "White" and PatientRecords.City = "Chicago";

    5 Kevin Smith 06271990

    6 Bob Donald 08121983"