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

It Database Project

Uploaded by

shayangaming14
Copyright
© © All Rights Reserved
Available Formats
Download as PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
25 views

It Database Project

Uploaded by

shayangaming14
Copyright
© © All Rights Reserved
Available Formats
Download as PDF, TXT or read online on Scribd
You are on page 1/ 2

GRADE 10

INFORMATION TECHNOLOGY (PROJECT WORK)


Open Office Base
Q1. Create a project in open office base to store and manage student details along with result details
i.e. marks details. Documentation of the case study should be neatly presented using writer.

The project should include Design view, Datasheet view, Field specifications, Form view, Query,
Report for both tables.
STUDENT RESULT SYSTEM

The student Marks Management refers to storing and managing student details as well as marks
details. In order to maintain these details, we have created a project that has two tables namely
Student and Marks tables.

Student table stores the student details and the Marks table stores the marks details. Notice that
these two tables have Admin_no in common which relates these two tables. The structure for these
tables need to be created in Design view followed by adding data in datasheet view.

Student Table

Fields for Student Master table are:

Admin_no S_name

FieldType= Tinyinteger[TINYINT]; Field Type = Text[VARCHAR];


Primary key Entry required = Yes;
Length=5; Length=30;

Class Address

Field Type = Text[VARCHAR]; Field Type = Text[VARCHAR];


Entry required = Yes; Entry required = Yes;
Length=5; Length=50;

DOB City

Field Type = Date[DATE]; Field Type = Text[VARCHAR];


Entry required = Yes; Format Entry required = No;
example=01/01/00 ; Length=50;
Default value = Delhi;
Marks Table
Field specifications for Marks table:

Admin_no Hindi

FieldType= Tinyinteger[TINYINT]; Field Type = BigInt[BIGINT];


Primary key AutoValue = No;
Entry required = Yes; Entry required = Yes;
Length=5; Length=3;

English Science

Field Type = BigInt[BIGINT]; Field Type = BigInt[BIGINT];


AutoValue = No; AutoValue = No;
Entry required = Yes; Entry required = Yes;
Length=3; Length=3;

Math IT

Field Type = BigInt[BIGINT]; Field Type = BigInt[BIGINT];


AutoValue = No; AutoValue = No;
Entry required = Yes; Entry required = Yes;
Length=3; Length=3;

Q2. Create below mentioned tables using SQL. Give screenshot of SQL command after executing it.

a. Write SQL statement to create a query on the following table TeamIndia

PlayerID Integer
Player_Name varchar(40)
Goals_hit Numeric
Matches_won Numeric

i Give a query to display all records for the given table.


ii As the team won the match, so give a query to display all player records after increasing
matches_won by one.

b. Give SQL statements:


1. To display
a. All the records in the table.
b. All records in a table where book author is HELEN KELLER.
2. To delete the record where book_id is B00238

Books

BOOK_ID B_NAME B_AUTHOR


B00236 3 MEN IN A BOAT J E ROME K
B00237 THE TRIAL FRANZ KAFKA
B00238 ACCIDENTAL DEATH OF AN ANARCHIST DARIO FO
B00239 THE STORY OF MY LIFE HELEN KELLER

You might also like