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 column_name, nullable
FROM all_tab_columns
WHERE table_name LIKE 'TABLE_NAME%%'
ORDER BY column_name
SELECT *
FROM sys.all_constraints
WHERE table_name = 'MY_TABLE'
AND constraint_type = 'P'
SELECT *
FROM sys.all_ind_columns aic,
sys.all_constraints ac
WHERE aic.table_owner = 'TABLE_SCHEMA'
AND ac.table_name = aic.table_name
AND ac.constraint_type = 'P'
AND ac.table_name = 'MY_TABLE'
AND ac.index_name = aic.index_name
ORDER BY aic.table_owner, aic.table_name, aic.index_name, aic.column_position