15 Feb 2014

Tables Manipulation in Oracle

Problem:

creating table, inserting values and retrieving all the values from a table


Code:

Creating
Create table sample(name varchar(10));
Inserting:
Insert into sample values('hemanth');
Retrieving:
select* from hemanth;

No comments:

Post a Comment