Xii-Ip-Sql Commands (Practice)
Xii-Ip-Sql Commands (Practice)
Xii-Ip-Sql Commands (Practice)
use students;
describe student;
show tables;
select*from student;
select*from student;
19) COMMAND FOR USING GROUP BY AND HAVING CLAUSE WITH WHERE CLAUSE:-
select avg(marks),name,class from student WHERE class in(9,12) GROUP BY name having
avg(marks)<2000;
describe sports;
COMMIT;