I have wrote this SQL code but cannot find the problem with it
Select
Nodes.Caption AS ServerName,
Nodes.DeviceRole AS DeviceRole,
(
SELECT
Nodes.Caption
FROM dbo.NodeIPAddresses AS Ips
)
FROM dbo.Nodes
I have wrote this SQL code but cannot find the problem with it
Select
Nodes.Caption AS ServerName,
Nodes.DeviceRole AS DeviceRole,
(
SELECT
Nodes.Caption
FROM dbo.NodeIPAddresses AS Ips
)
FROM dbo.Nodes