How do I sort digits numerically when they are sorted alphabetically?

A column of numbers may sort in the wrong order because it is improperly typed. Convert the column to int64 to make it sort numerically.

Use int64 to convert the string column to int64 and sort to order from maximum to minimum:

make_col userID:int64(userID)
sort desc(userID)