Skip to content

Latest commit

 

History

History
24 lines (21 loc) · 597 Bytes

File metadata and controls

24 lines (21 loc) · 597 Bytes

Reverse - Reverse order of rows in a CSV

sample file
┌─────┬────────┐
│ idx │ name   │
├─────┼────────┤
│  1  │ tom    │
│  2  │ jerry  │
│  3  | hansen |
└─────┴────────┘

reverse result

┌─────┬────────┐
│ idx │ name   │
├─────┼────────┤
│  3  │ hansen │
│  2  │ jerry  │
│  1  | tom    |
└─────┴────────┘