码迷,mamicode.com
首页 > 数据库 > 详细

oracle 写declare例子

时间:2014-10-21 00:43:29      阅读:554      评论:0      收藏:0      [点我收藏+]

标签:ar   for   sp   ef   bs   line   res   oracle   har   

注意:

1.赋值要用 :=

2.或的关系用 or 表示

 

declare

  prefix VARCHAR2(2); --前缀

  res_value VARCHAR2(20);

begin

  prefix := ‘QZ‘;

  for i in (select col1,col2 from table_name ) loop

    if i.col1= ‘col1‘ or i.col2= ‘col2‘  then
         res_value := ‘123456‘;
      end if;

  end loop;

  res_value := SUBSTR(res_value,0,2);  --截取字符串 从第一位(0和1都代表第一位)开始截取2为数

  dbms_output.put_line( res_value ); -- 输出语句

end;

最后输出 “12”

oracle 写declare例子

标签:ar   for   sp   ef   bs   line   res   oracle   har   

原文地址:http://www.cnblogs.com/hellowoody/p/4039258.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!