IP Practical Code
IP Practical Code
3 Data Management
Q8. Add a new column named Scholarship and assign all the students with the constant amount 5000.00
Q9. Change the Scholarship amount to 10000.00 for all those students who have scored above 85 in
Phy_Acc and Chem_BSt.
Q10. Show the name of the students with 10% of the scholarship amount added for those students who have
scored above 90 in the Maths_Bio and the heading of this column should be Max Scholars . (** Not editing
the column just for the display purpose)
*************
Code 10
Statement3
CREATE TABLE Student_Detail
( Student_Id INTEGER(4) PRIMARY KEY ,
Name VARCHAR(20) ,
D_O_B DATE ,
ENGLISH INTEGER(3) ,
Maths_Bio INTEGER(3) ,
Phy_Acc INTEGER(3) ,
Chem_BSt INTEGER(3) ,
IP INTEGER(3) ) ;
************