Tagged Questions
0
votes
1answer
110 views
Microsoft Access Parameter Query Fails Occasionally
I have a query that, basically, says this:
SELECT DISTINCT [DB_ID]
FROM [TableX]
WHERE ([ForeignKey]=@ForeignKey);
Once I have this, I return the first DB_ID (there should be only one).
The ...