Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations SkipVought on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Column lookup getting in way

Status
Not open for further replies.

JFoushee

Programmer
Oct 23, 2000
200
0
0
US
Hi... building a query to demonstrate orphaned/missing records.

In this case, all employees should be assigned an active position.

So I have a query that will show all employees who have bogus (missing) positions....

Code:
SELECT PersonnelID, Name, PositionID
FROM tblPersonnel
WHERE PositionID NOT IN (SELECT PositionID FROM tblPositions)
AND PositionID <> 0
ORDER BY PersonnelID
But I get back results....
Code:
_______________________________________________
| PersonnelID | Name            | Position     |
|-------------|-----------------|--------------|
|          60 | John Doe        |              |
|         231 | Jane Doe        |              |
|         286 | And so on...    |              |
|-------------|-----------------|--------------|

I explicitly asked for the PositionID, but because of a Lookup function behind the column, I get this goofy blank pulldown.

Is there a way to show the behind-the-scenes ID?
Code:
_______________________________________________
| PersonnelID | Name            | PositionID   |
|-------------|-----------------|--------------|
|          60 | John Doe        |           83 |
|         231 | Jane Doe        |          125 |
|         286 | And so on...    |          125 |
|-------------|-----------------|--------------|
 
Nevermind, I did this:
Code:
SELECT ... PositionID + 0
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top