--使用pl/sql语句打印一个hello world

begin

  dbms_output.put_line('hello,world');

end;

  
 

但是在sqlplus里面就不一样了

首先输入

begin

dbms_output.put_line('hello,world');

end;

/

通过set serveroutput on

/

来调用输出语句

 

可以通过edit命令对过程语句进行修改

 

name [constrant]datatype[notnull]:=|default value

 

 

--pl/sql语句中的if语句

declare

     sal1 number(6,2);

begin

  select sal into sal1 from emp where lower(ename)=lower('&ename');

  if (sal1<2000) then

    dbms_output.put_line('less 2000');

    end if;

end;

 

--pl/sql 里面的 if else 语句

declare

     sal1 number(6,2);

begin

  select sal into sal1 from emp where lower(ename)=lower('&ename');

  if (sal1<2000) then

    dbms_output.put_line('less 2000');

    else

      dbms_output.put_line('more 2000');

    end if;

end;

 

--pl/sql语句中的if elsif语句

declare

     sal1 number(6,2);

begin

  select sal into sal1 from emp where lower(ename)=lower('&ename');

    if (sal1<2000) then

    dbms_output.put_line('less 2000');

    elsif (sal1>2000 and sal1<400) then

    dbms_output.put_line('between 2000 and 4000');

    elsif (sal1>400) then

    dbms_output.put_line('more 4000');

    else

      dbms_output.put_line('other...........');

    end if;

end;

 

--pl/sql语句里面的case语句

declare

    a number(2):=0;

begin

    a:=&a;

    case a

      when 10 then

        dbms_output.put_line('aaaaaaaaaaa');

      when 20 then

        dbms_output.put_line('bbbbbbbbbbbb');

      else

        dbms_output.put_line('other.....');

    end case;    

end;

 

--pl/sql语句里面的loop语句

declare

    q number :=0;

begin

    loop

      q:=q+1;

      dbms_output.put_line('q='||q);

      exit when q=10;

    end loop;

end;

 

--使用if 结束的

declare

    q number :=0;

begin

    loop

      q:=q+1;

      dbms_output.put_line('q='||q);

      if q=10 then

        exit;

      end if;

    end loop;

end;

 

 

--使用 while 循环

declare

     q number :=0;

begin

     while(q<10)loop

      q:=q+1;

      dbms_output.put_line('q='||q);

     end loop;

end;

 

--使用 for循环  反向遍历 reverse

declare

begin

     for i in reverse 1..10 loop

      dbms_output.put_line(i);  

     end loop;

end;

 

 

PLS_INTEGER和BINARY_INTENER唯一区别是在计算当中发生溢出时,BINARY_INTENER型的变量会被自动指派给一个NUMBER型而不会出错,PLS_INTEGER型的变量将会发生错误。

 

 

record  定义类型

 

集合容器

index_by table

嵌套表

varray

type num_array is table of number(5) index by binary_integer;

 

 

单行单列  变量 varchar2 %type

单行多列 record

单列多行 集合 (type)

多行多列 集合(rowtype)

 

索引表的格式

type name is table of element_type index by key_type;

 

declare

     v_ename emp.ename%type;

     v_emp emp%rowtype;

begin

     select ename into v_ename from emp where empno=7369;

     select * into v_emp from emp where empno=7369;

     dbms_output.put_line(v_ename);

     dbms_output.put_line(v_emp.sal||'  '||v_emp.ename);

end;

 

--仅输出特殊的结构   使用 record来定义

declare

    type emp_record is record(

         v_ename emp.ename%type,

         v_sal emp.sal%type,

         v_deptno emp.deptno%type

    );

    v_emp_record emp_record;

begin

    select ename,sal,deptno into v_emp_record from emp where empno=7369;

    --我也可以通过赋值语句修改里面的值

    v_emp_record.v_ename:='zhaan';

    dbms_output.put_line(v_emp_record.v_ename);

    dbms_output.put_line(v_emp_record.v_sal);

    dbms_output.put_line(v_emp_record.v_deptno);

end;

 

--

declare

    type num_array is table of number(5) index by binary_integer;

    a num_array;

begin

    for i in 1..10 loop

      a(i):=i;

    end loop;

    for i in 1..10 loop

      dbms_output.put_line(a(i));

    end loop;

end;

 

 

--例子一

declare

    type emp_array is table of emp%rowtype index by binary_integer;

    a emp_array;

begin

    select * bulk collect into a from emp;

    for i in a.first..a.last loop

      dbms_output.put_line(a(i).ename||'  '||a(i).job);

    end loop;

end;

--集合中装有集合

declare

    type record1 is record(

         vempno emp.empno%type,

         vename emp.ename%type,

         vsal   emp.sal%type

    );

    type record2 is record(

         vdeptno emp.deptno%type,

         vrecord record1

    );

    a record1;

    b record2;

begin

  select empno,ename,sal into a from emp where empno=7369;

  b.vrecord:=a;

  dbms_output.put_line(b.vrecord.vempno);

  dbms_output.put_line(b.vrecord.vename);

  dbms_output.put_line(b.vrecord.vsal);

end;

--

declare

    type cc is table of varchar2(20) index by varchar2(20);

    a cc;

begin

    a('beijing'):='china';

    a('dongjing'):='japan';

    a('huashengdun'):='usa';

    dbms_output.put_line(a('beijing'));

end;

学习pl/sql之一的更多相关文章

  1. Oracle 学习PL/SQL

    先上一张实用的图:用于转义字符的. SQL> select chr(42) ||'is what?' from dual; CHR(42)||---------*is what? 想转义哪个就转 ...

  2. 使用PL/SQL Developer 学习pl/sql

    1.创建表并且插入一些数据 (这里表名为test): 2. New 一个SQL Window敲下如下代码(--为注释部分): declare   --declare:用于plsql中的声明变量,和be ...

  3. Oracle PL/SQL学习之Hello World(0)

    1.PL/SQL是Oracle数据库的一大创举,让一些复杂繁琐的常规主流编程代码做的编码处理过程,只需要在PL/SQL中使用简短的几句代码就可以解决,并且准确高效.那么遵循惯例,我们学习PL/SQL编 ...

  4. Oracle PL/SQL实战代码下载

    最近在学习PL/SQL编程,算是一个进阶吧,书没带光盘,所以按照书中的地址去下载样例,无法下载,到图灵官网找到了源代码下载地址,无法下载的留邮箱,我发给大家 下载地址: http://www.itur ...

  5. Oracle数据库之PL/SQL基础

    介绍PL/SQL之前,先介绍一个图像化工具:Oracle SQL Developer 在oracle的开发过程中, 我们难免会使用第三方开发的软件来辅助我们书写SQL, pl/sql是一个不错的sql ...

  6. pl/sql编程

    body { font-family: "Microsoft YaHei UI","Microsoft YaHei",SimSun,"Segoe UI ...

  7. ORACLE PL/SQL开发--bulk collect的用法 .

    刚刚在inthirties老大的博客里看到这篇文章,写的不错,正好自己最近在学习PL/SQL,转过来学习学习. ============================================ ...

  8. pl/sql 的 put和put_line区别

    在学习PL/SQL脚本时,打印语句是用得最多的语句. 在Oracle中,又有两种打印的方法:put和put_line.它们的区别是:put:不换行输出,输出在缓冲区,不显示出来,直到执行put_lin ...

  9. PL/SQL程序中调用Java代码(转)

    主要是学习PL/SQL调用JAVA的方法. 平台:WINDOWS 1.首先使用IDE写好需要调用的java代码,再添加"create or replace and compile java ...

随机推荐

  1. BFC (Block formatting context)

     一:BFC 是什么      MDN解释: A block formatting context is a part of a visual CSS rendering of a Web page. ...

  2. PHP原生开发的各大音乐平台API接口

    支持以下音乐平台 网易云音乐 QQ音乐 酷狗音乐 酷我音乐 虾米音乐 百度音乐 一听音乐 咪咕音乐 荔枝FM 蜻蜓FM 喜马拉雅FM 全民K歌 5sing原创 5sing翻唱 若是数据获取失败 方案一 ...

  3. slice扩容

    1.当向切片新加入数据,原切片数据加上新数据长度不超过切片容量时,直接加入切片末尾,容量大小不变. 2.当加入新的数据后,数据长度超出原切片的容量大小2倍,则切片的容量会是数据长度(偶数)或数据长度( ...

  4. Go语言相对于C++的优点

    Go语言是Google公司在2009年开源的一门高级编程语言,它为解决大型系统开发过程中的实际问题而设计,支持并发.规范统一.简单优雅,被很多Go语言传道者誉为“互联网时代的C语言”.而C++语言诞生 ...

  5. Linux命令学习笔记1

    1.Linux命令学习 2.Mkdir /data       -创建文件夹 在/下创建文件夹 data 3.Cd               -目录切换 列如cd / 4.Touch /data/1 ...

  6. python基础学习1-类,对象

    class Foo:#定义类 def mail(self,email,message):#定义类的方法 print('发送邮件给%s! 信息:%s'% (email,message)) return ...

  7. USACO Section1.1

    本系列博客主要学习和记录USACO的相关代码和总结,附上我的github地址. 什么是USACO USACO全称是The USA Computing Olympiad,主要目的是从美国高中生中选出代码 ...

  8. Spring restTemplate

    什么是RestTemplate RestTemplate是Spring提供的用于访问Rest服务的客户端,提供了多种便捷访问远程HTTP服务的方法,能够大大提高客户端的编写效率.   项目中注入Res ...

  9. How to use the windows active directory to authenticate user via logon form 如何自定义权限系统,使用 active directory验证用户登录

    https://www.devexpress.com/Support/Center/Question/Details/Q345615/how-to-use-the-windows-active-dir ...

  10. Git 个人笔记

     最近在看 Git ,顺便把这些常用命令记录下来,以备以后忘记能查看(未完):   // 设置用户名和邮箱  使用global 表示这台主机上所有的Git仓库都会使用这个配置  也可以对某个仓库指定不 ...