Simon Slavin: > Nice try. The rounding rule is that a .5 rounds to the nearest even number.
No it isn't: sqlite> select round(40226+0.5); 40227.0 sqlite> select round(40227+0.5); 40228.0 sqlite> select round(40228+0.5); 40229.0 sqlite> select round(40229+0.5); 40230.0 Phil Hibbs. -- Don't you just hate self-referential sigs? _______________________________________________ sqlite-users mailing list [email protected] http://sqlite.org:8080/cgi-bin/mailman/listinfo/sqlite-users

