Skip to content
Adglob Infosystem Pvt Ltd
  • About Us
  • B2B and B2C Database
  • Bulk Email Solution
  • Contact Us
  • Corporate Email Service
  • Database Portfolio
  • Database Process Flow
  • Database Services
  • FAQs
  • Lead Generation
  • Managed Email Campaign Solution
  • Our Clients
  • Privacy Policy
  • Product Blog
  • Request Sample for Free Database
  • Terms & Conditions
  • Web Scrapping
  • PL/SQL

    1. Home>
    2. PL/SQL>
    3. Page 2

    PL/SQL – GOTO Statement

    • Post author:B D
    • Post published:August 23, 2021
    • Post category:PL/SQL
    • Post comments:1 Comment

    A GOTO statement in PL/SQL programming language provides an unconditional jump from the GOTO to a labeled statement in the same subprogram. NOTEĀ āˆ’ The use of the GOTO statement is not recommended…

    Continue ReadingPL/SQL – GOTO Statement

    PL/SQL – CONTINUE Statement

    • Post author:B D
    • Post published:August 23, 2021
    • Post category:PL/SQL
    • Post comments:0 Comments

    The CONTINUE statement causes the loop to skip the remainder of its body and immediately retest its condition prior to reiterating. In other words, it forces the next iteration of the loop…

    Continue ReadingPL/SQL – CONTINUE Statement

    PL/SQL – EXIT Statement

    • Post author:B D
    • Post published:August 23, 2021
    • Post category:PL/SQL
    • Post comments:1 Comment

    The EXIT statement in PL/SQL programming language has the following two usages āˆ’ When the EXIT statement is encountered inside a loop, the loop is immediately terminated and the program control resumes…

    Continue ReadingPL/SQL – EXIT Statement

    PL/SQL – Nested Loops

    • Post author:B D
    • Post published:August 23, 2021
    • Post category:PL/SQL
    • Post comments:0 Comments

    PL/SQL allows using one loop inside another loop. The following section shows a few examples to illustrate the concept. The syntax for a nested basic LOOP statement in PL/SQL is…

    Continue ReadingPL/SQL – Nested Loops

    PL/SQL – FOR LOOP Statement

    • Post author:B D
    • Post published:August 23, 2021
    • Post category:PL/SQL
    • Post comments:0 Comments

    A FOR LOOP is a repetition control structure that allows you to efficiently write a loop that needs to execute a specific number of times. Syntax FOR counter IN initial_value .. final_value…

    Continue ReadingPL/SQL – FOR LOOP Statement

    PL/SQL – WHILE LOOP Statement

    • Post author:B D
    • Post published:August 23, 2021
    • Post category:PL/SQL
    • Post comments:1 Comment

    A WHILE LOOP statement in PL/SQL programming language repeatedly executes a target statement as long as a given condition is true. Syntax WHILE condition LOOP    sequence_of_statements END LOOP; Example DECLARE    a number(2)…

    Continue ReadingPL/SQL – WHILE LOOP Statement

    PL/SQL – Basic Loop Statement

    • Post author:B D
    • Post published:August 23, 2021
    • Post category:PL/SQL
    • Post comments:1 Comment

    The basic loop structure encloses a sequence of statements in between theĀ LOOPĀ andĀ END LOOPĀ statements. With each iteration, the sequence of statements is executed, and then control resumes at the top of…

    Continue ReadingPL/SQL – Basic Loop Statement

    PL/SQL – Loops

    • Post author:B D
    • Post published:August 23, 2021
    • Post category:PL/SQL
    • Post comments:0 Comments

    In this chapter, we will discuss Loops in PL/SQL. There may be a situation when you need to execute a block of code several times. In general, statements are executed…

    Continue ReadingPL/SQL – Loops

    PL/SQL – Nested IF-THEN-ELSE Statements

    • Post author:B D
    • Post published:August 23, 2021
    • Post category:PL/SQL
    • Post comments:0 Comments

    It is always legal in PL/SQL programming to nest the IF-ELSE statements, which means you can use one IF or ELSE IF statement inside another IF or ELSE IF statement(s). Syntax IF( boolean_expression 1)THEN    -- executes when the boolean expression…

    Continue ReadingPL/SQL – Nested IF-THEN-ELSE Statements

    PL/SQL – Searched CASE Statement

    • Post author:B D
    • Post published:August 23, 2021
    • Post category:PL/SQL
    • Post comments:1 Comment

    The searched CASE statement has no selector and the WHEN clauses of the statement contain search conditions that give Boolean values. Syntax The syntax for the searched case statement in PL/SQL is āˆ’ CASE…

    Continue ReadingPL/SQL – Searched CASE Statement
    • Go to the previous page
    • 1
    • 2
    • 3
    • 4
    • Go to the next page
    Copyright - OceanWP Theme by OceanWP