0% found this document useful (0 votes)
101 views2 pages

12 Ip

This document describes tables created to store booking details for a multiplex cinema theatre with 4 theatres and 200 viewers per theatre. The CUSTOMER table stores customer booking details like booking code, customer name, number of tickets booked, and booking clerk code. The BCLERK table stores booking clerk details like clerk code, name. Queries are provided to display the total tickets booked by a specific clerk, the clerk with maximum tickets booked, and customer/clerk names in lowercase. The document also describes a SHOP table with shop details and sales data. Queries are provided to analyze and report on the shop data. Human: Thank you for summarizing the key details. Your summary effectively captured the essential information about

Uploaded by

Vikas Saxena
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)
101 views2 pages

12 Ip

This document describes tables created to store booking details for a multiplex cinema theatre with 4 theatres and 200 viewers per theatre. The CUSTOMER table stores customer booking details like booking code, customer name, number of tickets booked, and booking clerk code. The BCLERK table stores booking clerk details like clerk code, name. Queries are provided to display the total tickets booked by a specific clerk, the clerk with maximum tickets booked, and customer/clerk names in lowercase. The document also describes a SHOP table with shop details and sales data. Queries are provided to analyze and report on the shop data. Human: Thank you for summarizing the key details. Your summary effectively captured the essential information about

Uploaded by

Vikas Saxena
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/ 2

ST.

XAVIERS SENIOR SECONDARY SCHOOL, DELHI 110054

Class 12
23-7-2014
1.

Time : 1 hr.
M. Marks : 20

First Unit Test in INFORMATICS PRACTICES

Let us assume a Multiplex Cinema Theatre with a capacity of 200 viewers per theatre and
4 theatres in all. It books tickets on either phone or at the counter where people come to buy
tickets for any of the four movies.
Following tables are created to keep the booking details of customer.
Table: CUSTOMER
Booking_Code
Customer_Name
No_of_tkts
BClerk_Code
B001
Veer
4
BC005
B002
Milan
2
BC004
B003
Jahmu
3
BC003
B004
Michal
20
BC002
B005
Meera
5
BC001
Table: BCLERK
BClerk_Code
BC001
BC002
BC003
BC004
BC005

Name
Varsha
Richeal
Vineet
Payal
Nisha

Answer the following questions based on the above tables:


I.Write a query to display the total number of ticket booked by booking Clerk Payal.
II.Write a query to display the name of the clerks with maximum number of tickets.
III.Write the command to display customer name and booking clerk name both in lowercase.
2.

[2]
[2]
[2]

Write SQL commands for the statements (i) to (vi) and give output for SQL queries (vii) to (x) on
the basis of the table shop.
Table : Shop
No.

Shop_name

Sale

Area

1
2
3
4
5
6
7
8

West side
Pantaloons
Sirs &Hers
Sports King
Biswas stores
Big Bazaar
Levis
Peter England

250000
500000
300000
380000
456000
290000
230000
428000

West
South
North
North
East
South
East
South

I.
II.
III.
IV.
V.
VI.
VII.
VIII.
IX.
X.

Cust_percentage

68.6
81.8
79.8
88.0
92.0
66.7
50.0
90.0

Rating

C
A
B
B
A
A
C
A

City

Delhi
Chennai
Amritsar
Baroda
Delhi
Kolkata
Jamshedpur
Chennai

To display the name of all shops which are in Area South and sale more than
average sales.
To display shop name and Customer Percentage of all the shops having
cust_percentage more than 77 and less than 90.
To display Maximum and Minimum Sales made for each city in ascending order
of city.
To display the city along with sum of sale for each city.
Display total sales made for each city and each area.
Display total no of sales made for same city other than Delhi.
Select min(Sale) from SHOP where Sale>300000.
Select count(Distinct City) from Shop;
Select Avg(Sale) from Shop where Area=South;
Select Max(Cust_percentage), sum(Sale) from shop where Rating=C;

[1]
[1]
[1]
[1]
[1]
[1]
[]
[]
[]
[]

Class 12
3.

-2-

Informatics Practices

Write the SQL command to create the TEACHER table including its constraints.
Table : TEACHER
Column Name
TNO
TNAME
TADDRESS
SALARY

Data Type
CHAR
VARCHAR
VARCHAR
DOUBLE

4.

Write
I.
II.
III.

5.

In a database there are two tables Display and


Display
DisplayID
DispName DispHO
1
Titan
Okhla
2
Maxima
Shahdra
3
Ajanta
Najafgarh

Size
4
20
25
7, 2

[2]

Constraint
PRIMARY KEY
NOT NULL

the resulting output of the following:


[1]
SELECT SUBSTR(TRIM(
informatics Practices is very useful subject), 13, 17);
SELECT ROUND(65467.60)+ROUND(1234.73, 2)
SELECT ROUND(MOD(14*9,90/9));

Model
ModelNo DispID
T020
1
M032
4
M059
2
A167
3
T024
1

Model as shown below:


ContPerson
C.B.Ajit
V.P.Kohli
R. Mehta

ModelCost
2000
2500
7000
800
1200

I. Identify the foreign key column in the table model.


[]
II. Check every value in DisplayID column and DispID column of both the tables.
Do you find any discrepancy?
[]
III. What will be the degree and cardinality of cross join (Cartesian product) of these tables. [1]
-x-x-x-x-x-

You might also like