Answers for "oracle sql index"

SQL
0

create index in oracle commanf

CREATE INDEX new_index_name ON table_name (column_name)
Posted by: Guest on December-31-2020
0

how to select an index in oracle sql

SELECT  *
FROM    all_indexes
WHERE   table_name = 'COUNTRY';
Posted by: Guest on January-26-2021

Code answers related to "SQL"

Browse Popular Code Answers by Language