SQLite Forum

Round function returning -0.0
Login
Run the `sqlite3` CLI and try the following query:
```
select round(0.0), round(0.0, 1), round(-0.0), round(-0.0, 1);
```