I have this simple query in access:
SELECT Node_Interfaces.NODE_ID, Node_Interfaces.Interface
FROM Node_Interfaces INNER JOIN temp_test ON Node_Interfaces.NODE_ID = temp_test.NODE_ID;
which I'd like to use in an asp page. I want to query for all Interfaces that has the same NODE_ID as in the...