From your example this relates to the ORDER BY clause in a select statement. The value defines the ordering sequence of fields in the order by, each field has a unique number defining its precedence.
for example ORDER BY f1,f2,f3,f5
f5 would have a sort order of 5
Possible values can be 1 to number of fields in the order by.