私はデータを削除
そのが
を動作していない複数のテーブルからデータを削除します以下のクエリを持っている私を助けてください:
DoCmd.RunSQL ("delete tblTesting,tblCodes,tblContract,tblScheduled,tblAbsense,tblClock from tblTesting,tblCodes,tblContract,tblScheduled,tblAbsense,tblClock where tblTesting.TestId = " & lstResults.Column(1) & " And tblTesting.Empid = " & Me.txtEmpIdSearch.Value & " And (tblTesting.Empid= tblCodes.EmpId Or tblTesting.Empid= tblContract.EmpId Or tblTesting.Empid= tblScheduled.EmpId Or tblTesting.Empid= tblAbsense.EmpId Or tblTesting.Empid= tblClock.EmpId) ")
テーブルの削除を正しい順序で実行することを忘れないでください。外部キーの関係が有効な場合、親テーブルは最後から削除する必要があります。 – HLGEM