摘要: DDL语言 Create,创建表结构 create table TABLENAME ( col1 dataType [not null], col2 dataType [not null], col3 dataType [not null], col4 dataType [not null], co 阅读全文
posted @ 2020-11-17 17:58 且I听 阅读(107) 评论(0) 推荐(0)
摘要: 索引 索引的创建语句 单列索引 create index 索引名 on 表名(列名) 多列索引 create index 索引名 on 表名(列名1,列名2....) 删除索引 Drop index 索引名 查看某个表中的所有的索引 select * from all_indexs where ta 阅读全文
posted @ 2020-11-17 17:57 且I听 阅读(112) 评论(0) 推荐(0)