Oracle SQL,PL/SQL

Writing Executable Statements

Writing Executable Statements | TechTweet
Avatar of shohal
Written by shohal

Well, This is a short summery of Executable Statements ,I just Written.

Which section of PL SQL block contains all the executable statements?

A PL/SQL block has an executable section. An executable section starts with the keyword BEGIN and ends with the keyword END . The executable section must have a least one executable statement, even if it is the NULL statement which does nothing.

PL/SQL BLOCK SYNTAX AND GUIDELINES :

> Statements can continue over lines.
> Lexical units can be separated by :
> Spaces > Delimiters > Identifiers > Literals > Comments

PLSQL Block Syntax and Guidelines :

Identifiers
> Can contain up to 30 Characters.
> Cannot contain reserved words unless enclosed in double quotation marks.
> Must begin with an alphabetic character
> Should not have the same name as a database table column name.
> Characters and date literals must be enclosed in single quotation marks.
Example : v_ename := ‘Handerson’;
> Number can be simple values or scientific notation.
> A PLSQL block is terminated by a slash (/) on a line by itself.

What is Nested Blocks?

Nested Blocks are declare between inside the between block.

About the author

Avatar of shohal

shohal

I have profession and personal attachment with custom ERP Software development, Business Analysis, Project Management and Implementation almost (36) ,also Oracle Apex is my all-time favorite platform to developed the software. Moreover i have some website development experience with WordPress. For hand on networking experience DevOps and CCNA, it create me a full package. Here are some core programming language with networking course i have been worked: Oracle SQL ,PL/SQL,Oracle 19c Database , Oracle Apex 20.1,WordPress,Asp.Net ,MS SQL ,CCNA ,Dev Ops, SAP SD

Leave a Comment