SQLite Forum

Round function returning -0.0
Login
Did you try the query I mentioned from a Windows `sqlite3` CLI?
```
select round(0.0), round(0.0, 1), round(-0.0), round(-0.0, 1);
```