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.
SQL> select * from kernal;
VAL
----------
1064
1066
1068
1069
select decode(substr(val,4,1),'4','S','6','U','8','F','x')
||substr(val,2,2) value
from kernal;
VAL
---
S06
U06
F06
x06