Viewing 15 posts - 1 through 15 (of 15 total)
Worked like a charm!!
I originally started with a sub query, but without success changed to the left join... I see now why it was failing.
Sean, Thanks for your help on...
March 22, 2013 at 11:13 am
Sean, Thanks for your reply and the article... Hopefully I've done it correctly
Here is the info to create the results
-- ===== If the test table already exists, drop it
...
March 22, 2013 at 10:27 am
Thanks SQL Junkie,
Looks like the postings crossed paths
Thanks for the reply
March 22, 2006 at 8:58 am
I found that this also worked faster (suggestions/comments are welcome too)
SELECT * FROM tblNumbers
WHERE
RecNum NOT IN
(
SELECT SomeNum FROM tblNumA
UNION
SELECT SomeNum FROM tblNumB
)
March 22, 2006 at 8:56 am
My Mistake,
I had the same data in each table, returning 0 results.
I've since added data NOT IN the other tables and it worked fine
March 22, 2006 at 8:51 am
Worked like a charm!
I really appreciate your help
Thank you,
Rick
February 21, 2006 at 12:36 pm
Jo,
Thanks for the help (and quick response), I was able to get started in the right direction.
Although I am having one seemingly small problem.
When I set the ORDER BY NewID()...
February 21, 2006 at 12:05 pm
Hi, it's me again.
I see that a few people have read this post, but I feel that I hadn't explained what I was trying to do as clearly as I'd...
February 21, 2006 at 8:29 am
KH,
Thanks for the answer,
I'll know for next time as I should be using some more of these down the road
Thanks again
Rick
November 11, 2005 at 1:32 pm
Scott & Rajesh
Thanks for your input.
I almost had it after your comment Rajesh, but I was still a few steps away.
Scott, thanks for your post, I was able to get...
October 5, 2005 at 10:01 am
Thank you Prasad!
It worked perfectly!
Rick
May 4, 2004 at 7:11 am
Hi,
I purchased a copy of SQL 2000 Standard 1 processor on Ebay about a year ago.
As part of the agreement with the seller, I sent the product to Microsoft for...
May 3, 2004 at 12:51 am
Thanks Dogeth
It worked great!
quote:
Use brackets in your where clause....
WHERE
(
tblProfile.Education = 'Some College'
OR tblProfile.Education = 'Associates Degree'
)
AND tblProfile.MemberIDpr = tblUsers.MemberID
...
November 30, 2003 at 6:57 pm
Viewing 15 posts - 1 through 15 (of 15 total)