Hi there,
I need to create an aql query that uses a sub query to produce a list of computers.
So I'm using the IN() function.
However within the subquery I need to remove one of the returned columns.
How can I hide a column from the resulting aql query?
eg. here's the subquery. I need to remove the 'dcount' column from the results:
select username, UNIQUECOUNT(computername) as dcount from events where signature is NOT NULL group by signature,computer HAVING signature >= 5 last 1 DAYS
Thanks!
------------------------------
david broggy
------------------------------