摘要: 因需求搬至CSDN : https://blog.csdn.net/WaY0626 阅读全文
posted @ 2021-03-10 17:45 且I听 阅读(56) 评论(0) 推荐(0)
摘要: 快捷指令设置 我们打开plsql,找到Configure下的preperence选项。 点击编辑,我这里是已经设置好了, 就可以实现快捷输入了。 阅读全文
posted @ 2020-12-24 09:34 且I听 阅读(405) 评论(0) 推荐(0)
摘要: 定时任务 应现在项目需求,需要在数据库写定时任务, 创建存储过程 需要提前创建一个存储过程。由于测试,简单一点来: create or replace procedure TestJob is begin insert into ztest(name,createdate) values('test 阅读全文
posted @ 2020-12-21 10:08 且I听 阅读(258) 评论(0) 推荐(0)
摘要: 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听 阅读(99) 评论(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听 阅读(102) 评论(0) 推荐(0)