Untitled

 avatar
unknown
plain_text
2 years ago
433 B
4
Indexable
create table student223 
(
sid number(5)primary key,
sname varchar(10),
contact varchar(10),
dob date
);
alter table student223 address
varchar(20),
alter table student223 drop column dob;
rename student223 to student_info;

insert into student info value(1.'abhishek',9380569062,belgavi);
insert into student info value(2.'abhishek',9380569062,dharwad);
insert into student info value(3.'abhishek',9380569062,hubli);
Editor is loading...
Leave a Comment