Note: This was originally posted by an inactive account. Content was preserved by moving under an admin account.
Originally posted by: ryehYou could do something like:
emit *
where execCount == 10
That'll get you the tenth record. To be efficient, you should also use the 'consume' function to stop processing any records beyond 10.
[Addendum: Stony pointed that you could be referring to the 10th field, in which case, you could do something like:
emit '1:10' as MyField
Or you could mean something else entirely!]