Oracle Tutorial

What is Oracle
SQL Keywords

Oracle Wildcards

Oracle Wildcards

Oracle Aliases

Oracle Aliases

MySQL Tutorial

MySQL Tutorial

PL/SQL Tutorial

PL/SQL Tutorial

Oracle Interview Questions

Oracle Interview Questions and Answers


Oracle INSERT ALL Statement

In Oracle, INSERT ALL statement allows you to insert multiple rows with a single INSERT statement. You can insert the rows into one table or multiple tables by using only one SQL command.

Oracle INSERT ALL Syntax

To insert multiple rows with a single INSERT statement, use the following syntax:

Syntax

Parameters:

table_name: The table name to insert the records into.

col1: The columns in the table to insert values.

expr1: The values to assign to the columns in the table.

Oracle INSERT ALL example

The following Oracle statement to insert all the field values with single insert statement.

Example

Note:

In the above example, we have inserted multiple records from "tblCustomerLoan" using single INSERT statement.