Hi Folks, Conversion functions convert a value from one datatype to another. Generally, the form of the function names follows the convention datatype TO datatype. The NULL-related functions facilitate …
Read More »Tag Archives: Oracle PL/SQL
PL/SQL – Number Functions
Hi Folks, Functions are similar to operators in that they manipulate data items and return a result. Functions differ from operators in the format of their arguments. This format …
Read More »PL/SQL – Character/String Functions
Hi Folks, Functions are similar to operators in that they manipulate data items and return a result. Functions differ from operators in the format of their arguments. This format …
Read More »PL/SQL for real world – 8 features that you have to know
Hi folks, In this post, I’m going to discuss 8 features that you must know to work with PL/SQL. These are structures that I have been using most in …
Read More »PL/SQL For Practitioners – #7 Packages
Hi folks, A package is a schema object that groups logically related PL/SQL types, variables, constants, subprograms, cursors, and exceptions. A package always has a specification, which declares the public items that …
Read More »PL/SQL For Practitioners – #6 Functions
Hi folks, A user-defined function is a set of PL/SQL statements you can call by name. Functions are very similar to procedures, except that a function returns a value to …
Read More »PL/SQL For Practitioners – #5 Procedures
Hi folks, A procedure is a subprogram that performs a specific action. This feature is extremely important and vastly that we can use when developing in PL/SQL. Before invoking …
Read More »PL/SQL For Practitioners – #4 Exception Handling
Hi there, One of the most used features of PL/SQL is the exception handling. Exceptions can arise from many different sources such as coding mistakes and design faults. Although …
Read More »PL/SQL For Practitioners – #3 Explicit Cursor FOR LOOP Statement
Hi there, Well, cursors are widely used when programming in PL/SQL, so it is better to master it. In this article, I’m going to cover the basic structure for …
Read More »PL/SQL For Practitioners – #2 Implicit Cursor FOR LOOP Statement
Hi, Other structures when programming in PL/SQL are the FOR LOOP and CURSOR. In this post, I’m going to show how to use both of them together. Well, there …
Read More »