I have a table with lets say two fields, ProjectID and FullName. The FullName can have the same ProjectId number.<br>
What I want to do is make a query that will tell me if any given FullNames have worked on the same ProjectId<br>
So far I have<br>
<br>
SELECT ProjectID, FullName FROM MyTable WHERE<br>
FullName = SomeName1 OR FullName = SomeName2<br>
<br>
Which gives me the all ProjectID's that both the SomeNames have worked on, but what I need is a query returning only the ProjectID's that both SomeNames have worked on<br>
Thanks<br>
Collin<br>
Oh yes, can you requery a query in buffer memory?
What I want to do is make a query that will tell me if any given FullNames have worked on the same ProjectId<br>
So far I have<br>
<br>
SELECT ProjectID, FullName FROM MyTable WHERE<br>
FullName = SomeName1 OR FullName = SomeName2<br>
<br>
Which gives me the all ProjectID's that both the SomeNames have worked on, but what I need is a query returning only the ProjectID's that both SomeNames have worked on<br>
Thanks<br>
Collin<br>
Oh yes, can you requery a query in buffer memory?