2018年7月12日
摘要: 2018-07-1216:41:19 阅读全文
posted @ 2018-07-12 16:42 亮晶晶的小宇宙 阅读(173) 评论(0) 推荐(0) 编辑
摘要: 2018-07-12 15:49:51 阅读全文
posted @ 2018-07-12 15:50 亮晶晶的小宇宙 阅读(108) 评论(0) 推荐(0) 编辑
摘要: 2018-07-12 14:44:27 四、索引1、创建索引手动创建:create index 索引名 on 表名(列名,[列名,...])create table employee(pno number(7),pname varchar2(20)); create index inx_scott_ 阅读全文
posted @ 2018-07-12 14:46 亮晶晶的小宇宙 阅读(139) 评论(0) 推荐(0) 编辑
摘要: 2018-07-12 14:13:46 阅读全文
posted @ 2018-07-12 14:14 亮晶晶的小宇宙 阅读(108) 评论(0) 推荐(0) 编辑
摘要: 2018-07-12 14:07:44 序列 序列1、创建序列create sequence 序列名 [increment by n] 步长 [start with n] 序列的起始值 序列创建后第一次使用的第一个值 [minvalue n] 序列的最小值 [maxvalue n] 序列的最小值 [ 阅读全文
posted @ 2018-07-12 14:12 亮晶晶的小宇宙 阅读(190) 评论(0) 推荐(0) 编辑