Answers for "oracle show columns"

SQL
0

oracle list columns in schema

SELECT *
FROM all_tab_cols;
Posted by: Guest on March-19-2020
0

sql all columns

-- MySQL
SELECT * 
FROM INFORMATION_SCHEMA.COLUMNS;

-- SQL Server (possible solution)
SELECT * 
FROM SYS.COLUMNS;

-- Oracle
SELECT * 
FROM ALL_TAB_COLS; -- (If you only want user-defined columns)
-- ALL_TAB_COLS : only user-defined columns
-- ALL_TAB_COLUMNS : both user-defined AND system columns
Posted by: Guest on May-15-2020

Code answers related to "SQL"

Browse Popular Code Answers by Language