当前位置:网站首页>Database advanced learning notes -- SQL statement
Database advanced learning notes -- SQL statement
2022-07-06 11:09:00 【Pingguo stuffed with rice cakes】
sql The classification of
1. static state sql:select * from emp where empno=7788;
-- static state sql Referring to PL/SQL Block sqL Statements are explicit at compile time , It's about identifying objects
2. dynamic sql:select * from emp where empno=' Parameters ';
-- dynamic sql It means in PL/SQL Block compile time sql The statement is indeterminate , For example, different operations are performed according to the parameters entered by the user
( The parameter could be sql sentence , Numbers , written words )
------ dynamic sql-----
dynamic sql: Is to put sql Written in a string , Parse the string in the stored procedure to execute sql.
--(1) Execution dynamics sql Several ways to
(1)& Parameter input
(2) Use open-for,fetch and close sentence ( The cursor )
For processing dynamic multi row query operations , have access to oPEN-FOR Statement open cursor ,
Use FETCH Statement loop extract data , End use CLOSE Statement close cursor .
(3) Use batch dynamic statements
That is, in the dynamic sql Use in BULK Clause , Or when using cursor variables fetch Use in BULK, Or in the FORALL Use in statement
(4) Use what the system provides PL/soL package DBMs_sQL To achieve dynamic sQL
(5) Use EXECUTE IMMEDIATE sentence
Include DDL sentence ,DCL sentence ,DNL Statements and single line sELECT sentence . This method cannot be used to process multi line query statements
-- dynamic sql The role of
(1) Can support DDl sentence , static state sql Can only support DML sentence
(2) Support WEB The inquiry intention of the quoting program
(3) You can put the business logic in the table first , Then dynamically compile
-- Use EXECUTE IMMEDIATE Statement execution is dynamic sql-----------
static state sql Embed yourself in plsql In the sentence , And dynamic sql Statements produce different sql sentence .
grammar :
execute immediate Dynamic statement string
[into Variable list ]
[using parameter list ]
explain :
Dynamic statement string : Store the specified sql Statements or plsql String variable of block
into: Used to store query results
using: Parameters pass values
dynamic sql Format of parameters :[: Parameter name ], Parameters need to be used at run time using Pass value
-- Usage dynamics sql Operation to create a table -------------
— Sort PL/sQL In programming , stay DML And transaction control statements can be used directly sql,
however DDL Statement and system control statement can't be in PL/sql You can use ,
To achieve in pL/sql Use in DDL Statements and system control statements , You can use dynamic sql To achieve
-- The wrong way to write
begin
create tables test1000 as select * from emp;
end;
-- Correct writing 1( Neither pass parameters nor assign values )
begin
execute immediate 'create table test1000 as select * from emp ';
end;
select * from test1000;
-- Correct writing 2( Store the result set in variables and run dynamically )
declare
sqls varchar2(100);
begin
sqls:='create table test1001 as select * from emp ';
execute immediate sqls;
end;
select * from test1001;
-------- dynamic sql Transfer parameter and assignment -----------
using The ginseng
into assignment
Parameter format [: Parameters ]
--- Query salary according to employee number
--- Write three : Transfer parameter and assignment
declare
v_sal emp.sal%type;
begin
-- Execution dynamics sql
execute immediate 'select sal from emp where empno=: Parameters '
-- Variable assignment
into v_sal
-- Receiving parameters
using & Enter employee number ;
dbms_output.put_line(' Wages '||v_sal);
end;
--------- dynamic sql Statement does not pass parameters , Assign only --------------
--- example : Query salary according to employee number
----- Write four : Don't pass it on , Assign only
declare
v_sal emp.sal%type;
begin
execute immediate 'select sal from emp where empno=7788'
into v_sal;
dbms_output.put_line(v_sal);
end;
------ Example ----------
-- Create a stored procedure , By passing the table name , Delete the corresponding table ( Method 2)??????
create or replace procedure truncate_table(table_name in varchar2)
is
sqls varchar2(100);
begin
sqls:='truncate table'||table_name;
execute immediate sqls;
end;
begin
truncate_table('test1001');
end;
select * from test1001;
-- Syntax for creating tables ----------------------------
create table Table name (
Field name Field type )
-- Create table : Create a table according to the table name, field name and other parameters entered by the user
create or replace procedure create_table(
table_name in varchar2,---- Table name
field1 in varchar2,--- Field 1
field1type in varchar2,--- Field 1 Data type of
field2 in varchar2,--- Field 2
field2type in varchar2,--- Field 2 Data type of
field3 in varchar2,--- Field 3
field3type in varchar2--- Field 3 Data type of The last parameter is not followed by a comma
)
is
sqls varchar2(500);
begin
sqls:='create table'||' '||table_name||'('||field1||' '||field1type||','||field2||' '
||field2type||','||field3||' '||field3type||')';
execute immediate sqls;
end;
-- Call the stored procedure to create the table ??????--- Insufficient authority (sys user )
begin
create_table('test_table','id','varchar2(100)','name','varchar2(100)','age','varchar2(100)');
end;
-- insert data (sys user )---------------------------------------
create or replace procedure insert_table(
id in varchar2,
name in varchar2,
age in varchar2
)
is
sqls varchar2(500);
begin
sqls:='insert into test_table values(:1,:2,:3)';
execute immediate sqls using id,name,age;
end;
-- call
begin
insert_table('1',' Xiaohong ','18');
end;
select * from test_table;
边栏推荐
- Invalid default value for 'create appears when importing SQL_ Time 'error reporting solution
- 连接MySQL数据库出现错误:2059 - authentication plugin ‘caching_sha2_password‘的解决方法
- 一键提取pdf中的表格
- Win10: how to modify the priority of dual network cards?
- ++Implementation of I and i++
- A trip to Macao - > see the world from a non line city to Macao
- Postman uses scripts to modify the values of environment variables
- CSDN问答模块标题推荐任务(二) —— 效果优化
- Some problems in the development of unity3d upgraded 2020 VR
- 软件测试-面试题分享
猜你喜欢

Basic use of redis

Unable to call numpy in pycharm, with an error modulenotfounderror: no module named 'numpy‘

解决:log4j:WARN Please initialize the log4j system properly.

Other new features of mysql18-mysql8

Install mysql5.5 and mysql8.0 under windows at the same time

Why is MySQL still slow to query when indexing is used?

Mysql22 logical architecture

Picture coloring project - deoldify
![[free setup] asp Net online course selection system design and Implementation (source code +lunwen)](/img/ac/b518796a92d00615cd374c0c835f38.jpg)
[free setup] asp Net online course selection system design and Implementation (source code +lunwen)

软件测试与质量学习笔记3--白盒测试
随机推荐
CSDN blog summary (I) -- a simple first edition implementation
Install MySQL for Ubuntu 20.04
C语言标准的发展
[recommended by bloggers] background management system of SSM framework (with source code)
Ansible实战系列一 _ 入门
MySQL主从复制、读写分离
软件测试与质量学习笔记3--白盒测试
[download app for free]ineukernel OCR image data recognition and acquisition principle and product application
Navicat 导出表生成PDM文件
Esp8266 at+cipstart= "", "", 8080 error closed ultimate solution
A trip to Macao - > see the world from a non line city to Macao
TCP/IP协议(UDP)
MySQL主從複制、讀寫分離
Install mongdb tutorial and redis tutorial under Windows
One click extraction of tables in PDF
连接MySQL数据库出现错误:2059 - authentication plugin ‘caching_sha2_password‘的解决方法
Introduction to the easy copy module
PyCharm中无法调用numpy,报错ModuleNotFoundError: No module named ‘numpy‘
Mysql 其他主机无法连接本地数据库
报错解决 —— io.UnsupportedOperation: can‘t do nonzero end-relative seeks