Oracle PL/SQL/System Tables Views/all ind columns — различия между версиями

Материал из SQL эксперт
Перейти к: навигация, поиск
м (1 версия)
 
(нет различий)

Текущая версия на 10:01, 26 мая 2010

ALL_IND_COLUMNS view contains information about the columns indexed by an index on a table

  
SQL>
SQL> select table_name, column_name from  all_ind_columns
  2  where index_name = "COUNTRY_C_ID_PK";
TABLE_NAME
------------------------------
COLUMN_NAME
--------------------------------------------------------------------------------
COUNTRIES
COUNTRY_ID

SQL>