0% found this document useful (0 votes)
25 views

Term 2 Ip Practical File 2021-22 Blank Format

The document appears to be a student's practical record file submitted for their Informatics Practices class. It includes an acknowledgement section thanking the teacher for guidance, an introduction, a certificate signed by examiners certifying the completion of 12 practical exercises, and a contents listing of the 12 exercises completed with signatures. The exercises include SQL queries to create and manipulate tables, perform aggregate functions, format output, and extract date components.

Uploaded by

John Carpark
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
25 views

Term 2 Ip Practical File 2021-22 Blank Format

The document appears to be a student's practical record file submitted for their Informatics Practices class. It includes an acknowledgement section thanking the teacher for guidance, an introduction, a certificate signed by examiners certifying the completion of 12 practical exercises, and a contents listing of the 12 exercises completed with signatures. The exercises include SQL queries to create and manipulate tables, perform aggregate functions, format output, and extract date components.

Uploaded by

John Carpark
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
You are on page 1/ 5

CENTRAL BOARD OF SECONDARY EDUCATION

BMDAV PUBLIC SCHOOL


VEDIC MOHAN ASHRAM,
BHUPATWALA HARIDWAR

A TERM 2 PRACTICAL RECORD FILE IS SUBMITTED TO DEPARTMENT


OF INFORMATICS PRACTICES FOR THE FINAL FULLFILLMENT OF
AISSCE EXAMINATION SESSION – 2021-22

SUBMITTED BY: [ ]
SUBMITTED TO: MRS. KHUSHBOO NARULA
CLASS: [XII]
ROLL NO: [ ]

IP PRACTICAL RECORD FILE | | Page 1


ACKNOWLEDGEMENT

I wish to express my deep sense of


gratitude and indebtedness to our learned teacher
Mrs.Khushboo Narula, PGT INFORMATICS
PRACTICES,
[SCHOOL NAME] for his invaluable help, advice
and guidance in the preparation of this project.

I am also greatly indebted to our principal


[Mrs. Leena Bhatia] and school authorities for
providing me with the facilities and requisite
laboratory conditions for making this practical file.

I also extend my thanks to a number of


teachers, my classmates and friends who helped me to
complete this practical file successfully.

[Name of Student]

IP PRACTICAL RECORD FILE | | Page 2


CERTIFICATE

This is to certify that [Name of Student]

, student of Class XII, [BMDAV PUBLIC SCHOOL] has

completed the Term II - PRACTICAL FILE during the

academic year [2021-22] towards partial fulfillment of

credit for the Informatics Practices practical evaluation

of CBSE and submitted satisfactory report,

as compiled in the following pages, under my

supervision.

Total number of practical certified are: 12

Internal Examiner Head of the Department


Signature Signature

External Examiner Principal


Signature Seal and Signature

IP PRACTICAL RECORD FILE | | Page 3


CONTENTS
No. Practical Date Signature

1 Create a student table with the student id, name, and marks as
attributes where the student id is the primary key.
2 Insert the details of a new student in the above table

3 Delete the details of a student in the above table


4 Use the select command to get the details of the students with
marks more than 80
5 Find the min, max, sum, and average of the marks in a student
marks table
6 Find the total number of customers from each country in the
table (customer ID, customer Name, country) using group by.
7 Write a SQL query to order the (student ID, marks) table in
descending order of the marks
Write a SQL query to display the marks without decimal
8 places, display the reminder after diving marks by 3 and
display the square of marks
Write a SQL query to display names into capital letters, small
9 letters, display frist 3 letters of name, display last 3 letters of
name, display the position the letter A in name
10 Remove extra spaces from left, right and both sidesfrom the
text - " Informatics Practices Class XII "
11 Display today's date in "Date/Month/Year" format

12 Display dayname, monthname, day, dayname, day of month,


day of year for today's date

IP PRACTICAL RECORD FILE | | Page 4


1. Create a student table with the student id, name, and marks as attributes where
the student id is the primary key.
Ans.:
create table student
(studentid int(3) primary key,
name varchar(20) not null,
marks decimal(5,2));

You might also like