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.
create table xxx (
.
.
.
archive_date_time DATE
.
.
.
)
SELECT TO_CHAR (archive_date_time, 'HH:MI:SS AM') archive_time
FROM xxx
WHERE
.
.
.