`
文章列表
调用存储过程时,参数列表中的输出变量不能是常量,又不能在调用时直接在参数列表中声明。 因此要先声明一个变量,再执行存储过程。 例如 create or replace procedure prc (v1 in number,v2 in  varchar2, v3 out number ) .... 则调用的时候要有两个步骤 >var ot; >prc(0,'str',:ot);

存储过程实例

    博客分类:
  • sql
create or replace procedure proc_reback_72Hour(start_time in varchar2, --分诊开始时间                                                end_time   in varchar2, --分诊结束时间                                                query_user in number, --查询工号                                                query_time in date ...
create or replace procedure addMessage is cursor cursor1 is select max(p1.name) as names,p1.patient_id, f1.arrivel_time   from ws_first_page f1, ws_precheck p1 where f1.precheck_id = p1.id group by p1.patient_id, f1.arrivel_time order by p1.patient_id,f1.arrivel_time desc; mid varchar2(100); ...

oracle 游标实例

    博客分类:
  • sql
create or replace procedure addMessage is cursor cursor1 is select p1.patient_id, f1.arrivel_time   from ws_first_page f1, ws_precheck p1 where f1.precheck_id = p1.id group by p1.patient_id, f1.arrivel_time order by p1.patient_id,f1.arrivel_time desc; begin    for cursor_result in cursor1 loop ...
http://www.cnblogs.com/xdp-gacl/p/3497016.html

oracle 客户端配置

    博客分类:
  • sql
http://blog.sina.com.cn/s/blog_82a09f100101doei.html

oracle 建表

    博客分类:
  • sql
create table contact ( contact_id number(10) not null, contact_name varchar2(50) not null, contact_telephone varchar2(20) not null, constraint pk_contact primary key (contact_id)); COMMENT ON TABLE "CONTACT" IS '联系人表'; COMMENT ON COLUMN "CONTACT"."CONTACT_ID" IS '联系人ID' ...
多看别人设计好的代码,包括教材上的例题程序,在读懂别人的代码之后,想想为何人家这样设计?能不能在现有的程序上改动增加更多的功能?在学习他人的优秀之处时同时提高自己的水平。为了更好的帮助大家考试,考试百科为您提供了关于Oracle认证专题:Oracle按时间分组统计的sql,具体内容如下:   如下表table1:   日期(exportDate)               数量(amount)   --------------                    -----------   14-2月 -08                       20   10-3月 -0 ...

spring 定时任务

http://user.qzone.qq.com/515199028/blog/1375431659#!app=2&via=QZ.HashRefresh&pos=1375431659
http://niutuku.com/tech/javaScript/256989.shtml
http://www.2cto.com/kf/201108/102260.html
SELECT * FROM tr_merchant_key AS OF TIMESTAMP   TO_TIMESTAMP('2013-03-24 16:00:00', 'yyyy-mm-dd hh24:mi:ss')
http://www.cnblogs.com/cloudwalf/archive/2008/09/04/1284033.html
如图 192.168.1.1 ping不通 http://network.chinabyte.com/52/12167052.shtml 设置路由 http://jingyan.baidu.com/article/a378c960651d67b329283058.html 无线网络设置密码 http://jingyan.baidu.com/article/48b558e373bfea7f38c09a8d.html 192.168.1.1 192.168.0.1 192.168.1.254 tp-link--用户名admin,密码admin   神州数码--用户名为adsl,密码为ads ...
http://www.l99.com/EditText_view.action?textId=442529
Global site tag (gtag.js) - Google Analytics