Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
select case when TOT_M < 9 then substr(char(TOT_M),09,03)
when TOT_M < 99 then substr(char(TOT_M),08,04)
when TOT_M < 999 then substr(char(TOT_M),07,05)
else char(TOT_M)
end as result