To the alter column I want update values calculates from two another columns. I write:
UPDATE daily_eu SET total_cases_per_million = (total_cases/population)*1000000;
Result is for all records value:
0.000
How to fix to give correct result of my calculation?