"Igor Tandetnik" wrote...

On 10/1/2014 10:34 AM, Stephan Beal wrote:
You're doing integer math. You need floating point:

select round(1/2,10) as t;

You probably meant  round(1.0/2, 10), or   round(1/2.0, 10)  or similar.

Thanks, Igor.
_______________________________________________
sqlite-users mailing list
sqlite-users@sqlite.org
http://sqlite.org:8080/cgi-bin/mailman/listinfo/sqlite-users

Reply via email to