Entries by Oracle ERP Apps Guide

, , ,

Merge into in SQL

The merge command syntax is merge into table1 using table2 on (join_condition) when matched update set col1 = value when not matched insert (column_list) values (column_values). The statement components work in the following way:1. In the merge into table1 clause, you identify a table into which you would like to update data in an existing […]

, , ,

DELETE Statement

The DELETE statement allows you to delete a single record or multiple records from a table.The syntax for the DELETE statement is:    DELETE FROM table    WHERE predicates;Example #1 : Simple exampleLet’s take a look at a simple example:    DELETE FROM suppliers    WHERE supplier_name = ‘IBM’;This would delete all records from the suppliers table where the […]

, , ,

UPDATE Statement

Data manipulation on Oracle tables does not end after you add new records to your tables. Often, the rows in a table will need to be changed. In order to make those changes, the update statement can be used.The UPDATE statement allows you to update a single record or multiple records in a table.The syntax […]

, , ,

DML Statements

Data Manipulation Language (DML) is a family of computer languages used by computer programs database users to retrieve, insert, delete and update data in a database.Currently the most popular data manipulation language is that of SQL, which is used to retrieve and manipulate data in a Relational database. Other forms of DML are those used […]

, , ,

INSERT Statement

The INSERT statement allows you to insert a single record or multiple records into a table.The general syntax for an insert statement is insert into tablename (column_list) values (valuesl_list), where tablename is the name of the table you want to insert data into, column_list is the list of columns for which you will define values […]