SQLite Forum

UNION Sorts on First Field
Login
When I execute:
```
    SELECT 'Minimum'
    UNION
    SELECT 'Maximum'
    UNION
    SELECT 'Today'
    ;
```

I get:
```
    Maximum
    Minimum
    Today
```

While I would expect:
```
    Minimum
    Maximum
    Today
```

Is this a bug or the way it should work?    
Is it possible to circumvent the sort?