Good evening
I have made a SWQL query to get the following information:
-- Hosts (from Orion.VIM.Hosts) with the Cluster name (Orion.VIM.Clusters)
This runs successfully in SWQL studio but when I attempt to apply this to a empty table widget on a modern dashboard the following error occurs:
-- Provided SWQL query is not valid. Details: RunQuery failed, check fault information. Ambiguous column name DisplayName.
The query is really quite simple as I am new
>> SELECT h.DisplayName, h.Status, c.DisplayName
>> FROM Orion.VIM.Hosts h
>> JOIN Orion.VIM.Clusters AS c ON h.ClusterID = c.ClusterID
>> WHERE h.DisplayName LIKE 'esx%'
Because of my newness I am kind'a stuck here
Can someone help?