SQLite Forum

Round function returning -0.0
Login
Here is the result on Ubuntu SQLite 3.35
:
sqlite> select round(0.0), round(0.0, 1), round(-0.0), round(-0.0, 1);
0.0|0.0|0.0|0.0

So I guess that this is a Windows issue