I am not aware of a function or command to do this.
However, you could use a more complicated where clause if we assume you have broken out the version into fields major, minor and point....
|where major > 2 OR (major >=2 AND minor >3) OR (major >=2 AND minor >= 2 AND point > 5)
I am not aware of a function or command to do this.
However, you could use a more complicated where clause if we assume you have broken out the version into fields major, minor and point....
|where major > 2 OR (major >=2 AND minor >3) OR (major >=2 AND minor >= 2 AND point > 5)