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
ColumnA,
SUBSTR(MIN(LPAD(rownum,'0',10) || ColumnB),11) || ':'
SUBSTR(MAX(LPAD(rownum,'0',10) || ColumnB),11) AS ColumnB
FROM (
SELECT rownum, ColumnA, ColumnB
FROM TableA) x
GROUP BY ColumnA
ORDER BY 1, 2
;