Search
 
SCRIPT & CODE EXAMPLE
 

SQL

oracle show index columns

SELECT TABLE_NAME, INDEX_NAME, COLUMN_NAME
FROM DBA_IND_COLUMNS			-- or ALL_IND_COLUMNS
WHERE TABLE_OWNER = 'MY_SCHEMA' AND TABLE_NAME = 'MY_TABLE'
ORDER BY TABLE_NAME, COLUMN_POSITION;
Comment

PREVIOUS NEXT
Code Example
Sql :: postgres populate table from another table 
Sql :: delete dublicate rows sql 
Sql :: sql order by where condition 
Sql :: drop index oracle 
Sql :: sql server sleep 
Sql :: postgresql to_char time 
Sql :: update value postgresql 
Sql :: mysql url 
Sql :: sql count group by 
Sql :: CX_Oracle - import data from Oracle to Pandas dataframe 
Sql :: snap remove mysql workbench 
Sql :: import large .sql files into lampp 
Sql :: count mysql 
Sql :: oracle sql merge 
Sql :: oracle insert into 
Sql :: mysql subdate 
Sql :: drop index in sql 
Sql :: order by desc postgres 
Sql :: select nextval from sequence oracle 
Sql :: phpmyadmin reset root password 
Sql :: t sql null or empty string 
Sql :: string to sql timestamp 
Sql :: CALCULATING MONTHS BETWEEN TWO DATES IN POSTGRESQL 
Sql :: mysql email validation 
Sql :: mysql list tables by size 
Sql :: mysql record group by created date count 
Sql :: how to drop function in sql 
Sql :: postgresql combine values in one field 
Sql :: DATEDIFF minute postgres 
Sql :: declaring variables in pl sql 
ADD CONTENT
Topic
Content
Source link
Name
9+4 =