Just as an update I ended up running the following query against the db...
SELECT
dbo.Nodes.NodeID,
dbo.Nodes.IP_Address,
dbo.Nodes.Caption,
dbo.Nodes.IOSVersion
FROM
dbo.Nodes
WHERE
LOWER(dbo.Nodes.Vendor)= 'cisco'
ORDER BY
IOSVersion
Which gave the information that I needed.