I'm still learning how to speak SWQL and have never known how to speak SQL, so excuse the noobness of this question, but I'm trying to add fields for "created" and "updated" date/time for Service Desk incidents to my device summaries to give us a little more visibility into existing incidents while in the Orion platform. Currently, our widget is working off of the below query, but I just don't know how to add the other 2 fields to it. Hopefully one of you awesome Twack-ers can help me out.
SELECT IncidentNumber AS [Incident], ADDHOUR(-3,LastTriggerTime) AS [Triggered], IncidentUrl AS [_LinkFor_Incident], State AS Status, AssignedTo AS [Assigned To], OESI.Description
FROM Orion.ESI.AlertIncident OESI
inner join Orion.AlertObjects Object on Object.AlertObjectID=OESI.AlertObjectID
Where Object.RelatedNodeId=${NodeID} and IncidentNumber <> ''
Order By ID DESC