Create table “STUDENTS” and “TEACHERS”
Where ID and RNO are primary keys and int type (others are
varchar and int u can see)
a)Display all the data of students based on their alphabetical
order(of their name)
b)Display the number of people who got each grade (like 1 got A
, 2 got B etc )
c)Display ID . student name , marks and teacher name from
STUDENTS AND TEACHERS
d)Change primary key from ID to SALARY in TEACHERS
table
e)Increase the marks of every student who scored less than 80
(one query only)
f) Display the names of the teacher with the highest salary and
lowest salary
g)Delete the record of the student whose name starts with “D”
h)Change the SUBJECT to MATH of the teacher whose name
ends with “I”
i) Increase the salary by 2x if salary is less than 14000
YOU CAN ADD YOUR OWN VALUES TO THE TABLE AS
WELL BUT ADD THESE DATA MINIMUM