1. Home
  2. /
  3. Plsql
  4. /
  5. PL/SQL Max of Two Numbers

PL/SQL Max of Two Numbers - Plsql Typing CST Test

Loading…

PL/SQL Max of Two Numbers — Plsql Code

Finds the maximum of two numbers.

DECLARE
	a NUMBER := 15;
	b NUMBER := 25;
	max_val NUMBER;
BEGIN
	IF a > b THEN
		max_val := a;
	ELSE
		max_val := b;
	END IF;
	DBMS_OUTPUT.PUT_LINE('Max: ' || max_val);
END;

Plsql Language Guide

PL/SQL (Procedural Language/Structured Query Language) is Oracle Corporation's procedural extension to SQL. It combines SQL's data manipulation capabilities with procedural constructs like loops, conditions, and exceptions, enabling complex business logic execution directly within the database.

Primary Use Cases

  • ▸Writing stored procedures and functions
  • ▸Creating database triggers
  • ▸Automating batch jobs
  • ▸Data validation and business rule enforcement
  • ▸Complex reporting and ETL tasks

Notable Features

  • ▸Seamless SQL integration
  • ▸Support for cursors and collections
  • ▸Exception handling and error propagation
  • ▸Procedural constructs: loops, conditions, variables
  • ▸Package-based modular development

Origin & Creator

Developed by Oracle Corporation in the late 1980s to extend SQL with procedural capabilities.

Industrial Note

PL/SQL is the backbone of Oracle database applications, supporting triggers, stored procedures, and batch processing in enterprise environments.

More Plsql Typing Exercises

PL/SQL Counter and Theme TogglePL/SQL Simple AdditionPL/SQL FactorialPL/SQL Fibonacci SequencePL/SQL Array SumPL/SQL Even Numbers FilterPL/SQL Conditional Counter IncrementPL/SQL Resettable CounterPL/SQL Theme Toggle Only

Practice Other Languages

CReactPythonC++RustTypeScriptKotlinPHPJavaC#RubyMqlCqlN1qlCypher