Create table student_score(
student_id int,
student_name varchar2(100),
Math int,
Social int,
science int,
English int,
Hindi int);
insert into student_score values(1,'Ajay',80,90,78,66,95);
insert into student_score values(2,'Aman',95,97,82,77,96);
insert into student_score values(3,'Bijoy',82,90,78,66,95);
insert into student_score values(4,'Kumar',80,90,78,98,95);
insert into student_score values(5,'Raman',99,98,92,98,95);
insert into student_score values(6,'Sanjay',86,90,99,66,95);
• • •
Missing some Tweet in this thread? You can try to
force a refresh