I am trying to do a API call to get our routers and switches from solarwinds but can't work out how to join two tables.
I have this query that gets all the devices
SELECT NodeID, IPAddress, Caption, NodeDescription, Description, DNS, SysName, Vendor, IOSImage, IOSVersion, MemoryAvailable, MachineType, IsServer, ChildStatus, TotalMemory, SNMPVersion, Community, RWCommunity, IP, IP_Address, NodeName, EntityType, DisplayName
FROM Orion.Nodes
And I also have this one that gets the ServiceTag
SELECT ParentObjectName, Manufacturer, Model, ServiceTag
FROM Orion.HardwareHealth.HardwareInfoBase
And I want to join them on "ParentObjectName = SysName" But i just can't seem to work out how.