Hi, I will explain Introduction to Oracle SQL in this post of Oracle SQL Tutorial series.
Read More »Oracle SQL
Create and Drop Synonym Tips in Oracle with Examples
Hi, I will explain Create Synonym Tips in Oracle with Examples in this post.
Read More »Alter Session Set NLS_DATE_FORMAT in Oracle with Examples
I will explain Alter Session Set NLS_DATE_FORMAT in Oracle with Examples in this post.
Read More »PL/SQL Datetime Functions
Hi Folks, Datetime functions operate on date (DATE), timestamp (TIMESTAMP, TIMESTAMP WITH TIME ZONE, and TIMESTAMP WITH LOCAL TIME ZONE), and interval (INTERVAL DAY TO SECOND, INTERVAL YEAR TO …
Read More »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 – #8 Type object and Table of Type
Hi folks, Object-oriented programming is especially suited for building reusable components and complex applications. In PL/SQL, object-oriented programming is based on object types. They let you model real-world objects, …
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 »