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