Learn Oracle In Easy Way

Learn Oracle In Easy Way
Learn Oracle In Easy Way
One stop destination for all the concepts of oracle 10g, sql, pl/sql and dbms concepts.
Just here for the view

Most recent posts

10/15 3:19 Suppressing Duplicate Rows in Output/ How To Suppressing Duplicate Rows in Output
Suppressing Duplicate Rows In Output : Until it is instructed sql * plus displays the results of a query without eliminating duplicate rows.To eliminate the duplicate rows in the results, the DISTINCT keyword is used.Multiple columns can be declared...
9/22 2:54 Literals In Oracle
A literal and constant value are synonyms to one another and refer to a fixed data value. The types of literals recognized by oracle are Text literals Integer literals Number literals Interval literals Text Literals : It specifies a text or character...
9/22 3:02 Applying Concatenation Operator
Applying Concatenation Operator : The concatenation operator links column to other columns, arithmetic expressions, constant values.Columns on either side of the operator are combined to make a single output column.The resultant column is treated as...
9/06 18:59 Applying Arithmetical Operations In Select Statements
Applying Arithmetical Operations In Select Statements : 1. Arithmetic expressions can be implemented through SELECT statement. 2. Arithmetic expressions can be implemented to Modify the way the data is displayed. Perform calculations. Implement WHAT...
9/06 19:15 Handling Null Values
NULL : It is a value which is Unavailable Unassigned U... NULL is not same as zero or blank space. If a row lacks the data for a particular column, than that value is said to be NULL or to contain NULL. SQL>SELECT Ename, Job, Sal, Comm FROM Emp; If...