S
Sprinks
I have a form for a timesheet application based on the following query:
SELECT Timesheet.StaffID, Timesheet.PeriodStartDate, Staff.UserName,
Staff.FName & " " & [LName] AS FirstLast
FROM Timesheet INNER JOIN Staff ON Timesheet.StaffID = Staff.StaffID;
In testing today, I deleted a record and was surprised that not only the
Timesheet record was deleted but also the corresponding record in the Staff
table. Clearly I'm misunderstanding something basic about queries.
Can anyone explain this behavior and tell me what I need to do change?
Thank you.
Sprinks
SELECT Timesheet.StaffID, Timesheet.PeriodStartDate, Staff.UserName,
Staff.FName & " " & [LName] AS FirstLast
FROM Timesheet INNER JOIN Staff ON Timesheet.StaffID = Staff.StaffID;
In testing today, I deleted a record and was surprised that not only the
Timesheet record was deleted but also the corresponding record in the Staff
table. Clearly I'm misunderstanding something basic about queries.
Can anyone explain this behavior and tell me what I need to do change?
Thank you.
Sprinks