Call now: 252-767-6166  
Oracle Training Oracle Support Development Oracle Apps

 
 Home
 E-mail Us
 Oracle Articles
New Oracle Articles


 Oracle Training
 Oracle Tips

 Oracle Forum
 Class Catalog


 Remote DBA
 Oracle Tuning
 Emergency 911
 RAC Support
 Apps Support
 Analysis
 Design
 Implementation
 Oracle Support


 SQL Tuning
 Security

 Oracle UNIX
 Oracle Linux
 Monitoring
 Remote s
upport
 Remote plans
 Remote
services
 Application Server

 Applications
 Oracle Forms
 Oracle Portal
 App Upgrades
 SQL Server
 Oracle Concepts
 Software Support

 Remote S
upport  
 Development  

 Implementation


 Consulting Staff
 Consulting Prices
 Help Wanted!

 


 Oracle Posters
 Oracle Books

 Oracle Scripts
 Ion
 Excel-DB  

Don Burleson Blog 


 

 

 


 

 

 
 

Oracle INSERT tips

Oracle Database Tips by Donald Burleson

The Oracle INSERT statement allows you to insert data into an Oracle table by inserting one or more rows of data.

The basic Oracle INSERT statement syntax is as follows:

insert into <table name> (col1, col2, col3,…) 
                  values (val1, val2, val3,…);

If the values listed are in the same order as the table columns and there is a value (even if it is NULL) for each column, you can leave out the column list as in the example above.  The easiest way to determine which columns are in the table is to describe the table in SQL*plus (SQL> desc author).

If you exclude a column from the Oracle INSERT statement, then the column list is mandatory because the database needs to match the values to the columns.  Excluded columns will contain NULL unless the table has a default value defined for that column. 

ANSI SQL allows for you to perform a SQL insert operation with a sub-select statement:

 insert /*+ append */ into
   finance_users
(
   name,
   salary
)
   select name, salary from emp where dept = 'FINANCE';

Also see these tips for tuning slow insert select statements.

SQL insert select statements can also use scalar subqueries for inserting into tables with values based on other tables. Below we use an insert select with a scalar subquery to compute the maximum credit for BILL and insert this value into a max_credit table.

 insert into
   max_credit
(
   name,
   max_credit
)
values
(
   'Bill',
   select max(credit) from credit_table where name = 'BILL'
);

 


 

 

��  
 
 
Oracle Training at Sea
 
 
 
 
oracle dba poster
 

 
Follow us on Twitter 
 
Oracle performance tuning software 
 
Oracle Linux poster
 
 
 

 

Burleson is the American Team

Note: This Oracle documentation was created as a support and Oracle training reference for use by our DBA performance tuning consulting professionals.  Feel free to ask questions on our Oracle forum.

Verify experience! Anyone considering using the services of an Oracle support expert should independently investigate their credentials and experience, and not rely on advertisements and self-proclaimed expertise. All legitimate Oracle experts publish their Oracle qualifications.

Errata?  Oracle technology is changing and we strive to update our BC Oracle support information.  If you find an error or have a suggestion for improving our content, we would appreciate your feedback.  Just  e-mail:  

and include the URL for the page.


                    









Burleson Consulting

The Oracle of Database Support

Oracle Performance Tuning

Remote DBA Services


 

Copyright © 1996 -  2020

All rights reserved by Burleson

Oracle ® is the registered trademark of Oracle Corporation.