SET-I Create the table student with fields SID Sname, DOB, Physic, Chems, Maths. CREATE TABLE student( sid NUMBER(3), sname VARCHAR2(60), dob DATE, physics NUMBER(5,2), chems NUMBER(5,2), maths NUMBER(5,2), PRIMARY KEY (sid) ); Add few rows into the table INSERT INTO student VALUES(301,'Abraham Mathew','23-June-1996',75,87,37); INSERT INTO student VALUES(302,'Adharsh Sunny','29-April-1995',78,82,90); INSERT INTO student VALUES(303,'Anson Mathew','27-February-1997',65,31,88); INSERT INTO student VALUES(304,'Arun Joji','17-March-1994',38,55,60); INSERT INTO student VALUES(305,'Christin Chacko','03-May-1994',82,88,97); INSERT INTO student VALUES(306,'Dimal Mathew','21-December-1994',91,96,99); INSERT INTO student VALUES(307,'Jeethu Mathew','19-April-1993',77,83,40); INSERT INTO student VALUES(308,...