当前位置:网站首页>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;
边栏推荐
- Ansible实战系列一 _ 入门
- CSDN question and answer module Title Recommendation task (I) -- Construction of basic framework
- SSM整合笔记通俗易懂版
- Esp8266 at+cipstart= "", "", 8080 error closed ultimate solution
- Use dapr to shorten software development cycle and improve production efficiency
- 软件测试与质量学习笔记3--白盒测试
- Postman uses scripts to modify the values of environment variables
- Data dictionary in C #
- Other new features of mysql18-mysql8
- Classes in C #
猜你喜欢
PyCharm中无法调用numpy,报错ModuleNotFoundError: No module named ‘numpy‘
【博主推荐】SSM框架的后台管理系统(附源码)
Leetcode 461 Hamming distance
35 is not a stumbling block in the career of programmers
Win10: how to modify the priority of dual network cards?
QT creator create button
Breadth first search rotten orange
Swagger、Yapi接口管理服务_SE
CSDN博文摘要(一) —— 一个简单的初版实现
Install mongdb tutorial and redis tutorial under Windows
随机推荐
Development of C language standard
Invalid global search in idea/pychar, etc. (win10)
报错解决 —— io.UnsupportedOperation: can‘t do nonzero end-relative seeks
CSDN问答标签技能树(一) —— 基本框架的构建
There are three iPhone se 2022 models in the Eurasian Economic Commission database
虚拟机Ping通主机,主机Ping不通虚拟机
Solution: log4j:warn please initialize the log4j system properly
软件测试与质量学习笔记3--白盒测试
SSM integrated notes easy to understand version
连接MySQL数据库出现错误:2059 - authentication plugin ‘caching_sha2_password‘的解决方法
Postman uses scripts to modify the values of environment variables
C language advanced pointer Full Version (array pointer, pointer array discrimination, function pointer)
Windows下安装MongDB教程、Redis教程
[recommended by bloggers] C WinForm regularly sends email (with source code)
Knowledge Q & A based on Apache Jena
导入 SQL 时出现 Invalid default value for ‘create_time‘ 报错解决方法
Record a problem of raspberry pie DNS resolution failure
02 staff information management after the actual project
Error reporting solution - io UnsupportedOperation: can‘t do nonzero end-relative seeks
Copy constructor template and copy assignment operator template