Author name: OTLMS

Oracle SQL

Oracle PL/SQL Cursors

When working with SQL in Oracle PL/SQL, queries often return multiple rows. To process these rows one at a time, […]

Oracle SQL

Oracle PL/SQL Functions

1. Introduction to Functions A Function in Oracle PL/SQL is a named program unit that must return a value. Functions

Oracle SQL

Oracle PL/SQL Procedures

1. Introduction to PL/SQL Procedures A Procedure in Oracle PL/SQL is a named program unit that performs a specific action.

Oracle PLSQL

PLSQL Practice Set 1

Refer the Sample Schema for this practice- https://blog.otlms.in/oracle-pl-sql-practice-reference-table-schemas-for-real-world-use-cases/ This practice set is designed to push your thinking beyond syntax and

Oracle SQL

SQL MERGE Statement

 Problem: Table: CUSTOMER_FIN Table: CUSTOMER_RAW Use of MERGE Statement and insert new records. Syntax MERGE INTO table_name–  specify the target

Oracle SQL

Demo of SQL CASE Statement

Problem: Required: The SQL CASE statement allows you to perform IF-THEN-ELSE functionality within an SQL statement. It’s good for displaying

Oracle SQL

Subquery in Oracle

A subquery is a query nested inside another query, typically used to perform more complex searches by querying results from

Scroll to Top