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;
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