Function
Arg | Description | Type |
---|---|---|
item | LazyExpr (required) |
Finds the largest item in the aggregate.
It is only meaningful in a group by query.
The following query lists all the processes and shows the largest bash pid of all bash processes.
SELECT Name, max(items=Pid) as LargestPid from pslist() Where Name =~ 'bash' group by Name