Hi,
By the help from tek-tipx.com I can run the sql:
"Select * From Table1 Left Join (Select Table2.[User] From Table2 Group By Table2.[User]) As t On Table1.[User]=t.[User]"
Now, I want to delete the selected records in Table1 something like
"Delete * From Table1 Left Join (Select Table2.[User] From Table2 Group By Table2.[User]) As t On Table1.[User]=t.[User] Where t.[User] Is Null"
without success. Can you tell me how to do that?
Thanks a lot for any help in advance.
By the help from tek-tipx.com I can run the sql:
"Select * From Table1 Left Join (Select Table2.[User] From Table2 Group By Table2.[User]) As t On Table1.[User]=t.[User]"
Now, I want to delete the selected records in Table1 something like
"Delete * From Table1 Left Join (Select Table2.[User] From Table2 Group By Table2.[User]) As t On Table1.[User]=t.[User] Where t.[User] Is Null"
without success. Can you tell me how to do that?
Thanks a lot for any help in advance.