Download as txt, pdf, or txt
Download as txt, pdf, or txt
You are on page 1of 1

create table student_manas

(
r_no numeric,
s_name varchar(50),
class varchar(10),
marks_s1 numeric,
marks_s2 numeric,
marks_s3 numeric
)
insert into student_manas values(1,'Manas','SYBSC',100,78,90);
insert into student_manas values(2,'XYZ','BMM',17,17,17);
insert into student_manas values(3,'Karan','BAF',60,75,80);
insert into student_manas values(4,'Gautam','Commerce',45,80,65);
insert into student_manas values(5,'Nikunj','Arts',19,45,48)

select * from student_manas where r_no=1

You might also like