oracle数据库为表字段建立索引得方法

 ̄綄美尐妖づ 提交于 2019-12-13 13:03:27

语法sql:create index 索引名称 on 表名 (字段名称);

实例sql:create index info_task_id on sended_info (task_id);

          info_task_id :索引名字自己起得

         sended_info :数据库表名称

          task_id:数据库字段名称

查询sql:select t.*  from sended_info t;
 

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!