Practical_2024-2025
Practical_2024-2025
Practical_2024-2025
HAOTAL, PANGEI
INFORMATION TECHNOLOGY(402)
AISSE
PRACTICAL FILE
Roll No:-
CONTENTS
a. Add Sheet4 in the file to calculate total of all 3 quarters due fee.
b. Rename all woksheets like sheet1-1st quarters, sheet2-2nd quarters, sheet3-3rd quarter and sheet4-final
due
c. Use sum function to add due fee data for 1st quarter, 2nd quarter, 3rd quarter and in respective cells
using consolidation.
3. Given below is the TEACHER table.
TEACHER
Solution:-
Step 1: Open the document from where the image has to be copied and select the image.
a. Add Sheet4 in the file to calculate total of all 3 quarters due fee.
b. Rename all woksheets like sheet1-1st quarters, sheet2-2nd quarters, sheet3-3rd quarter and
sheet4-final due
c. Use sum function to add due fee data for 1st quarter, 2nd quarter, 3rd quarter and in respective
cells using consolidation.
Solution:- a. Add “Sheet4” in the file to calculate total of all 3 Quarters Due fee.
b. Rename all worksheets like Sheet1-1st Quarter, Sheet2-2nd Quarter, Sheet3-3rd Quarter and sheet4
Final due
OUTPUT
d. To display the subject of all the teachers whose salary is more than 25000.
Ans:- SELECT SUBJECT FROM TEACHER WHERE SALARY>25000;
OUTPUT
e. To display the list of names of all the teachers order by date of join
Ans:- SELECT NAME FROM TEACHER ORDER BY DATE_OF_JOIN;
OUTPUT
OUTPUT
b. Display NAME and STATE from EMPLOYEES table where EMP_ID= 485
Ans:- SELECT NAME, STATE FROM EMPLOYEES WHERE EMP_ID=485;
OUTPUT
c. Display the information order by EMP_Id.
Ans:- SELECT * FROM EMPLOYEES ORDER BY EMP_ID;
OUTPUT
OUTPUT