Hi
iam trying to make report which shows Nodes Today's Reboot + Availability but SQL Query is not showing any result.
SELECT
Nodes.Caption
,COUNT(Nodes.LastBoot) AS [total boot count]
,Nodes.ATM_Branches
,ResponseTime.Availability
FROM dbo.ResponseTime
INNER JOIN dbo.Nodes
ON ResponseTime.NodeID = Nodes.NodeID
WHERE Nodes.ATM_Branches = ' atm branches'
GROUP BY Nodes.Caption
,Nodes.ATM_Branches
,ResponseTime.Availability
SQL Query Empty Output: