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.
col owner format a30
col table_name format a30
break on owner on table_name
set linesize 200
SELECT owner, table_name, column_name
FROM dba_tab_columns
ORDER BY owner,table_name, column_id;