Ba 6
Ba 6
Business Analytics
---------------------------------------------------------------------------------------------
Aim of Experiment: Create Database, Create Table, Alter Table, Create View, Creating
Function, Creating Index and Dropping Objects.
1) Count
SELECT COUNT(*) FROM Student
WHERE Math_score > 60;
2) Sum
SELECT SUM(Math_score) FROM Student;
3) AVG
SELECT AVG(Math_score) FROM Student;