My SQL is very rusty, been way too long since I last did queries in MySQL. What I am looking to do is create a report based on a SQL query for response times(or other columns) for certain node ID's.
So I did a
SELECT * FROM [dbo].[NodesData] WHERE NodesData.Caption LIKE '%XA-%'
This gave me a list of the nodes I want to query, now I need to take those node ID's and match them to the ResponseTime column in the Node Statistics table, and that is where I get lost. I haven't done a multi table query is so long that it is all gobbly to me again.