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 cast(
case when cast(substring(datenum, 5, 2) as int) < 5 then '20' else '19' end
+ substring(datenum, 5, 2)
+ '-' + substring(datenum, 1, 2)
+ '-' + substring(datenum, 3, 2)
as datetime)
from table1