search
HomeDatabaseOracleExample demonstrating how to use dynamic SQL in Oracle stored procedures

Oracle stored procedure dynamic SQL

Oracle database is a very powerful relational database system that supports stored procedures and dynamic SQL. Stored procedures are a way to create reusable code in a database, while dynamic SQL is a technology that generates SQL statements based on variables or parameters at runtime. Combining these two technologies can make our stored procedures more flexible and intelligent.

In Oracle stored procedures, the most common scenario of dynamic SQL is to dynamically generate SQL statements based on different conditions to achieve different query functions. In this way, we can dynamically generate corresponding SQL statements at runtime according to different needs to query the required data. Below, we use a simple example to demonstrate how to use dynamic SQL in Oracle stored procedures.

In Oracle, there is a dynamic SQL execution function EXECUTE IMMEDIATE, which can execute dynamically generated SQL statements. The function prototype is as follows:

EXECUTE IMMEDIATE dynamic_string [ INTO { define_variable [, define_variable]... | record } ];

Among them, dynamic_string represents a dynamically generated SQL statement; define_variable represents a defined variable . If the INTO clause is specified, the dynamically generated SQL statement will be executed and the results stored in define_variable. If the INTO clause is not specified, the dynamically generated SQL statement will be executed directly.

Consider a simple requirement, we need to query employee information based on different conditions. We can achieve this through the following stored procedure:

CREATE OR REPLACE PROCEDURE EMPLOYEE_QUERY(P_DEPTID IN NUMBER, P_JOBID IN VARCHAR2)
IS
DYNAMIC_SQL VARCHAR2(4000); -- Define dynamic SQL statements
CURSOR_EMP SYS_REFCURSOR; -- Define cursor variables
BEGIN
-- Dynamically generate SQL statements
DYNAMIC_SQL := 'SELECT EMPLOYEE_ID, FIRST_NAME, LAST_NAME, HIRE_DATE FROM EMPLOYEES WHERE 1=1';
IF P_DEPTID IS NOT NULL THEN

DYNAMIC_SQL := DYNAMIC_SQL || ' AND DEPARTMENT_ID = :deptid';

END IF;
IF P_JOBID IS NOT NULL THEN

DYNAMIC_SQL := DYNAMIC_SQL || ' AND JOB_ID = :jobid';

END IF;

-- Execute dynamic SQL
IF P_DEPTID IS NOT NULL AND P_JOBID IS NOT NULL THEN

OPEN CURSOR_EMP FOR DYNAMIC_SQL USING P_DEPTID, P_JOBID;

ELSIF P_DEPTID IS NOT NULL THEN

OPEN CURSOR_EMP FOR DYNAMIC_SQL USING P_DEPTID;

ELSIF P_JOBID IS NOT NULL THEN

OPEN CURSOR_EMP FOR DYNAMIC_SQL USING P_JOBID;

ELSE

OPEN CURSOR_EMP FOR DYNAMIC_SQL;

END IF;

-- Output query results
DBMS_OUTPUT.PUT_LINE('EMPLOYEE_ID' || CHR(9) || 'FIRST_NAME' || CHR(9) || 'LAST_NAME' || CHR(9 ) || 'HIRE_DATE');
LOOP

FETCH CURSOR_EMP INTO VAR_EMPLOYEE_ID, VAR_FIRST_NAME, VAR_LAST_NAME, VAR_HIRE_DATE;
EXIT WHEN CURSOR_EMP%NOTFOUND;
DBMS_OUTPUT.PUT_LINE(VAR_EMPLOYEE_ID || CHR(9) || VAR_FIRST_NAME || CHR(9) || VAR_LAST_NAME || CHR(9) || TO_CHAR(VAR_HIRE_DATE, 'YYYY-MM-DD'));

END LOOP;

-- Close the cursor
CLOSE CURSOR_EMP;
END;

at In the above example, we first defined the dynamic SQL query statement DYNAMIC_SQL, which dynamically generates the corresponding SQL query statement based on the input parameters. We then execute the dynamically generated SQL statement through the EXECUTE IMMEDIATE function and store the query results using the cursor variable CURSOR_EMP. Finally, we output the query results through the cursor variable.

In general, using dynamic SQL technology can make Oracle stored procedures more intelligent and flexible. When writing stored procedures, we can consider using dynamic SQL to increase the reusability and scalability of stored procedures. But it should be noted that when using dynamic SQL, SQL injection attacks should be avoided as much as possible. We can use methods such as bind variables and input parameters to avoid SQL injection attacks.

The above is the detailed content of Example demonstrating how to use dynamic SQL in Oracle stored procedures. For more information, please follow other related articles on the PHP Chinese website!

Statement
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Oracle's Core Function: Providing Database SolutionsOracle's Core Function: Providing Database SolutionsApr 25, 2025 am 12:06 AM

Oracle Database is a relational database management system that supports SQL and object relational models to provide data security and high availability. 1. The core functions of Oracle database include data storage, retrieval, security and backup and recovery. 2. Its working principle involves multi-layer storage structure, MVCC mechanism and optimizer. 3. Basic usages include creating tables, inserting and querying data; advanced usages involve stored procedures and triggers. 4. Performance optimization strategies include the use of indexes, optimized SQL statements and memory management.

Using Oracle Software: Database Management and BeyondUsing Oracle Software: Database Management and BeyondApr 24, 2025 am 12:18 AM

In addition to database management, Oracle software is also used in JavaEE applications, data grids and high-performance computing. 1. OracleWebLogicServer is used to deploy and manage JavaEE applications. 2. OracleCoherence provides high-performance data storage and caching services. 3. OracleExadata is used for high performance computing. These tools allow Oracle to play a more diversified role in the enterprise IT architecture.

Oracle's Role in the Business WorldOracle's Role in the Business WorldApr 23, 2025 am 12:01 AM

Oracle is not only a database company, but also a leader in cloud computing and ERP systems. 1. Oracle provides comprehensive solutions from database to cloud services and ERP systems. 2. OracleCloud challenges AWS and Azure, providing IaaS, PaaS and SaaS services. 3. Oracle's ERP systems such as E-BusinessSuite and FusionApplications help enterprises optimize operations.

Oracle Software in Action: Real-World ExamplesOracle Software in Action: Real-World ExamplesApr 22, 2025 am 12:12 AM

Oracle software applications in the real world include e-commerce platforms and manufacturing. 1) On e-commerce platforms, OracleDatabase is used to store and query user information. 2) In manufacturing, OracleE-BusinessSuite is used to optimize inventory and production planning.

Oracle Software: Applications and IndustriesOracle Software: Applications and IndustriesApr 21, 2025 am 12:01 AM

The reason why Oracle software shines in multiple fields is its powerful application and customized solutions. 1) Oracle provides comprehensive solutions from database management to ERP, CRM, SCM, 2) its solutions can be customized according to industry characteristics such as finance, medical care, manufacturing, etc. 3) Successful cases include Citibank, Mayo Clinic and Toyota, 4) The advantages lie in comprehensiveness, customization and scalability, but challenges include complexity, cost and integration issues.

Choosing Between MySQL and Oracle: A Decision GuideChoosing Between MySQL and Oracle: A Decision GuideApr 20, 2025 am 12:02 AM

Choosing MySQL or Oracle depends on project requirements: 1. MySQL is suitable for small and medium-sized applications and Internet projects because of its open source, free and ease of use; 2. Oracle is suitable for core business systems of large enterprises because of its powerful, stable and advanced functions, but at a high cost.

Oracle's Products: A Deep DiveOracle's Products: A Deep DiveApr 19, 2025 am 12:14 AM

Oracle's product ecosystem includes databases, middleware and cloud services. 1. OracleDatabase is its core product, supporting efficient data storage and management. 2. Middleware such as OracleWebLogicServer connects to different systems. 3. OracleCloud provides a complete set of cloud computing solutions.

MySQL and Oracle: Key Differences in Features and FunctionalityMySQL and Oracle: Key Differences in Features and FunctionalityApr 18, 2025 am 12:15 AM

MySQL and Oracle each have advantages in performance, scalability, and security. 1) Performance: MySQL is suitable for read operations and high concurrency, and Oracle is good at complex queries and big data processing. 2) Scalability: MySQL extends through master-slave replication and sharding, and Oracle uses RAC to provide high availability and load balancing. 3) Security: MySQL provides fine-grained permission control, while Oracle has more comprehensive security functions and automation tools.

See all articles

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

Video Face Swap

Video Face Swap

Swap faces in any video effortlessly with our completely free AI face swap tool!

Hot Tools

SecLists

SecLists

SecLists is the ultimate security tester's companion. It is a collection of various types of lists that are frequently used during security assessments, all in one place. SecLists helps make security testing more efficient and productive by conveniently providing all the lists a security tester might need. List types include usernames, passwords, URLs, fuzzing payloads, sensitive data patterns, web shells, and more. The tester can simply pull this repository onto a new test machine and he will have access to every type of list he needs.

mPDF

mPDF

mPDF is a PHP library that can generate PDF files from UTF-8 encoded HTML. The original author, Ian Back, wrote mPDF to output PDF files "on the fly" from his website and handle different languages. It is slower than original scripts like HTML2FPDF and produces larger files when using Unicode fonts, but supports CSS styles etc. and has a lot of enhancements. Supports almost all languages, including RTL (Arabic and Hebrew) and CJK (Chinese, Japanese and Korean). Supports nested block-level elements (such as P, DIV),

SublimeText3 Linux new version

SublimeText3 Linux new version

SublimeText3 Linux latest version

Notepad++7.3.1

Notepad++7.3.1

Easy-to-use and free code editor

DVWA

DVWA

Damn Vulnerable Web App (DVWA) is a PHP/MySQL web application that is very vulnerable. Its main goals are to be an aid for security professionals to test their skills and tools in a legal environment, to help web developers better understand the process of securing web applications, and to help teachers/students teach/learn in a classroom environment Web application security. The goal of DVWA is to practice some of the most common web vulnerabilities through a simple and straightforward interface, with varying degrees of difficulty. Please note that this software