SIGN UP MEMBER LOGIN:    
Blog

Insertion in a table in Oracle 10g (SQL+)

Posted by Dinesh Beniwal Blogs | VB.NET FAQ Sep 14, 2010
In this article you will learn how to Insert in a table in Oracle 10g (SQL+).

After creating a table if you u want to insert data in a table then.

Step: 1 when the table is created...

Insert1.gif

Use the insert command to insert the data in sql+.

INSERT COMMAND:

1: Insert into TABLE NAME

2: Insert the required values which exist in the emp table

3: VALUES ('name',age,'address');

EXample: VALUES ('brijesh',20,'kanpur');

1 row is created.

Insert2.gif

This is the query to insert the data into the table.

Read more articles related oracle Click Here

share this blog :
post comment