Oracle Insert | Insert - oracle tutorial - sql tutorial
Learn oracle - oracle tutorial - Oracle insert - oracle examples - oracle programs
What is Oracle INSERT ?
- The Oracle INSERT statement is used to insert a record or multiple records into a table.
Parameters are organized into
- The Oracle INSERT statement is used to insert a record or multiple records into a table.
- Table Name.
- Column Name
- Expression or Values
SQL Create Table
oracle tutorial , sql tutorial , sql , pl sql tutorial , oracle , pl sql , plsql
Syntax:
Parameters or Arguments:
table
- The table to insert the records into.
column1, column2, ... column_n
- The columns in the table to insert values
expression1, expression2, ... expression_n
- The values to assign to the columns in the table. So column1 would be assigned the value of expression1, column2 would be assigned the value of expression2, and so on.
Example:
oracle tutorial , sql tutorial , sql , pl sql tutorial , oracle , pl sql , plsql
Screenshot:
- Here we have inserted the values by using INSERT statement in the wikitechy_employee table.
- Click Run button to execute the query.
- We can see the row which has been successfully inserted in the wikitech_employee table.