> 데이터 베이스 > MySQL 튜토리얼 > oracle 动态语句 三种写法

oracle 动态语句 三种写法

WBOY
풀어 주다: 2016-06-07 15:50:25
원래의
1566명이 탐색했습니다.

SQL语句有两种方式,三种写法 Oracle编译PL/SQL程序块分为两个种:其一为前期联编(early binding),即SQL语句在程序编译期间就已经确定,大多数的编译情况属于这种类型;另外一种是后期联编(late binding) 4)由于动态SQL是在运行时刻进行确定的,所以相对

SQL语句有两种方式,三种写法 

 

Oracle编译PL/SQL程序块分为两个种:其一为前期联编(early binding),即SQL语句在程序编译期间就已经确定,大多数的编译情况属于这种类型;另外一种是后期联编(late binding)

4)由于动态SQL是在运行时刻进行确定的,所以相对于静态而言,其更多的会损失一些系统性能来换取其灵活性。

 

静态和动态 只是不同的方式  涉及的是前期和后期联编

对象信息之类的,语法检查,对象检查

 

三种写法

固定SQL,绑定变量SQL,硬编码SQL 

动态分别这三种
1 sql='select * from table where name='李三''
2 sql='select * from table where name=:p_name'
3 sql='select * from table where name='||p_name;

 

declare
vc_sql varchar2(1000);
i number;
begin
  
  i := 10;
  vc_sql := 'select /*+ demo 1*/ * from t where object_id=10';
  execute immediate vc_sql;
  
  vc_sql := 'select /*+ demo 2*/ * from t where object_id=:1';
  execute immediate vc_sql using i;
  
  vc_sql := 'select /*+ demo 3*/ * from t where object_id='||i;
  execute immediate vc_sql;
  
  i := 20;  
  vc_sql := 'select /*+ demo 1*/ * from t where object_id=10';
  execute immediate vc_sql;
  
  vc_sql := 'select /*+ demo 2*/ * from t where object_id=:1';
  execute immediate vc_sql using i;
  
  vc_sql := 'select /*+ demo 3*/ * from t where object_id='||i;
  execute immediate vc_sql;  
  
end;
/

 

SQL> select sql_text from v$sqlarea where sql_text like 'select /*+ demo %' order by sql_text;

SQL_TEXT
------------------------------
select /*+ demo 1*/ * from t where object_id=10

select /*+ demo 1*/ * from t where object_id=20

select /*+ demo 2*/ * from t where object_id=:1

select /*+ demo 3*/ * from t where object_id=10

select /*+ demo 3*/ * from t where object_id=20


如果重复执行 条件不变的话  3种方式都能重用,

如果 条件发生变化,

第一种字面写死的能重用,

第二种 绑定变量 基本能重用  ORACLE 10G以后 会窥视变量的值, 如果存数据分布信息 可能重新生成执行计划.

第三种参数化 会因为条件值发生改变不发生重用,


静态SQL语句 只是取消掉了引号的 ,没有execute immediate  基本跟上面形似一样

 

원천:php.cn
본 웹사이트의 성명
본 글의 내용은 네티즌들의 자발적인 기여로 작성되었으며, 저작권은 원저작자에게 있습니다. 본 사이트는 이에 상응하는 법적 책임을 지지 않습니다. 표절이나 침해가 의심되는 콘텐츠를 발견한 경우 admin@php.cn으로 문의하세요.
인기 튜토리얼
더>
최신 다운로드
더>
웹 효과
웹사이트 소스 코드
웹사이트 자료
프론트엔드 템플릿