- 博客(7)
- 资源 (1)
- 收藏
- 关注
转载 DES加密解密
public class DESUtils { public static String decrypt(String paramString) { String[] arrayOfString = decode(paramString); DESEncrypt localDESEncrypt = new DESEncrypt(arrayOfString[0]); paramStr
2016-12-01 18:58:07
259
原创 VIEW
--创建 CREATE OR REPLACE VIEW vw_name AS (select * from tableName -- 只能编写查询语句); --使用 select * from vw_name ;
2016-12-01 18:52:15
187
原创 存储过程
create or replace procedure proc_name(传入参数 类型) IS --游标用到的参数 v_b varchar2(30); v_c varchar2(30); -- 定义游标 cursor s_cursor_i is select id, name from tableName
2016-12-01 18:37:48
183
原创 job
-- job 创建 declare test_job_really number; begin sys.dbms_job.submit(job => test_job_really, what => '存储过程名(传入参数(实际情况));', next_date => to_date('30-
2016-12-01 17:50:38
200
原创 Trigger
create or replace trigger trg_name after insert or update on table_One --在新增这张表后 for each row begin --新增就新增 if :new.table_One的新增参数(sex)= '女' then insert into table_Two
2016-12-01 17:46:07
225
原创 oracle 基础
-- Create table create table tableName ( id NUMBER(20), name VARCHAR2(100), ); -- Add comments to the table comment on table tableName is '表名'; -- Add comments to the columns co
2016-12-01 16:16:07
259
转载 函数
--创建函数 create or replace function 函数名( 传入参数... 类型 ) return 类型 is v_name number; --定义个变量 begin select count(1) into v_name from table_name ts where 传入参数 = ts.goods_
2016-12-01 14:50:11
312
简历jiangf
2016-12-27
空空如也
TA创建的收藏夹 TA关注的收藏夹
TA关注的人
RSS订阅