博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
Oracle创建和查询索引
阅读量:3907 次
发布时间:2019-05-23

本文共 224 字,大约阅读时间需要 1 分钟。

1、创建索引的标准语法

以下为引用内容: 

CREATE INDEX 索引名 ON 表名 (列名)

TABLESPACE 表空间名;

例如:

以下为引用内容: 

CREATE INDEX idx_of_imsi ON uim_auth_file(imsi) TABLESPACE users;

 

       查询索引:

       select * from user_indexes where table_name=upper('T_DIC_OPERATOR_INFO');

 

转载地址:http://pdqen.baihongyu.com/

你可能感兴趣的文章
ASCII - American Standard Code for Information Interchange
查看>>
进制转换
查看>>
Python L suffix - indicated long integer literals before Python3
查看>>
URL shortner
查看>>
Django short url
查看>>
Tech Blog
查看>>
Logon System Design
查看>>
Python yield
查看>>
Sina API OAuth
查看>>
Python supervisor
查看>>
dict & set
查看>>
Common Multiple and Least Common Multiple(LCM)
查看>>
Greatest Common Divisor (GCD) - Euclidean algorithm
查看>>
Regular Expression Python
查看>>
大数据处理
查看>>
Mapreduce 通俗版
查看>>
MapReduce Inverted index
查看>>
MapReduce Intro
查看>>
Mapreduce Patterns, Algorithms, and use cases
查看>>
Hadoop interview
查看>>