I'm having trouble find the right SWQL to add the current values of two custom pollers to a report. The query I've been working with:
SELECT ONPMC.Node.Caption, ONPMC.Node.IPAddress, ONPMC.Node.IOSImage, ONPMC.CustomPollerName, ONPMC.AssignmentName, ONPMC.CurrentValue AS FlashSize
FROM Orion.NPM.CustomPollerAssignmentOnNode ONPMC
WHERE ONPMC.CustomPollerName in ('customFlashSize', 'customFreeSpace')
Turns out like:

So I can add at least one custom poller as a column but not sure how I would go about adding the other poller as a column. I'm not very well versed in SQL but if someone could provide any info as to how I could construct such a query, I would appreciate the help. Is this even possible? Would I need some type of JOIN? Thanks.