jimrward
Well-known Member
- Joined
- Feb 24, 2003
- Messages
- 1,895
- Office Version
- 2021
- 2019
- 2016
- 2013
- 2011
- 2010
- 2007
- 2003 or older
- Platform
- Windows
for example I have a table1 which contains member names and other information , I also have a table2 which contains a list of names and a column called IsCurrent which is a simple Y/N
I am trying to identify new members in table1 that are not in table2 where IsCURRENT=“Y”
In rough sql it might be
Select name from table1 where name not in (select name from table2 where iscurrent=“Y”)
I can then check these new names have paid their membership and add to table2
I am trying to identify new members in table1 that are not in table2 where IsCURRENT=“Y”
In rough sql it might be
Select name from table1 where name not in (select name from table2 where iscurrent=“Y”)
I can then check these new names have paid their membership and add to table2