List of Experiment RDBMS Updated
List of Experiment RDBMS Updated
14. Write queries to find max, min and avg marks and total number of records in to Student
table.
SELECT MAX(Marks) AS MaxMarks
FROM Students;
SELECT MIN(Marks) AS MinMarks
FROM Students;
SELECT AVG(Marks) AS AvgMarks
FROM Students;
SELECT COUNT(*) AS TotalRecords
FROM Students;
15. Study of open source ERP
16. Study of cloud ERP
17. Design of Supply Chain Management Model.