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 temp_test query. The problem is I don't know how to query a query in sql. Can anyone help?
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 temp_test query. The problem is I don't know how to query a query in sql. Can anyone help?