SQLite Forum

Help needed to return the right math results in sql query
Login
That may not be very clear.

This is what I'm trying...

```
select
	EG,
GPVBW/1000000-EG as Diff,
    Delay
from (
	select
		*,
		TID*0.003*250 as EG,
		Diff/0.003/250/750*60
from CalculateGrowth
)
```