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
left('00000000',8-length(rtrim(cast(122 as char(8))))) || cast(122 as char(8)) as my_value
from sysibm.sysdummy1
REPEAT('0',8-LENGTH(thenumber))||thenumber
-- OR --
RIGHT(CONCAT('00000000',thenumber),8)
-- OR (many other combinations)