Dec 21, 2000 #1 RichS Programmer Apr 24, 2000 380 US How do I select a value from one table where it doesn't exist in another table? Thanks for any help. Rich
How do I select a value from one table where it doesn't exist in another table? Thanks for any help. Rich
Dec 21, 2000 2 #2 foxdev Programmer Feb 11, 2000 1,995 US select * from table1 where column1 not in (select column1 from table2) Robert Bradley http://www.foxdev.com/ Upvote 0 Downvote
select * from table1 where column1 not in (select column1 from table2) Robert Bradley http://www.foxdev.com/
Dec 21, 2000 Thread starter #3 RichS Programmer Apr 24, 2000 380 US perfect. Thank you. Upvote 0 Downvote