Ms Access Assignment
Ms Access Assignment
Assignment -1.1
Assignment -1.2
Assignment -2.1
Insert new records and check all properties applied are working properly.
Assignment -2.2
Assignment-3.1.
a) Create two tables – Employee and Department with the given column structure.
b) Create two tables – Student and Course with the given column structure.
Assignment -3.2
Assignment -3.3
Design and create a complete Sales Order Database. The tables are
Assignment - 4.1
a) Write a query on Sales Order Database to fetch the OrderId, OrderDate, CustomerName, ClerkName,
ItemName, unitSold ,Price and TotalCost.
b) Sort them by Orderdate.
c) Try to find out the sales detail for a single Item ( a particular item)
d) Find out all sales detail where unit sold more than 10.
Assignment - 4.2
a) Write a query on Employee Database to fetch EmpID, EmpName, DeptName, LocationID and City.
b) Display the names of female employees.
c) Display the names of employee working in Delhi or in Mumbai.
d) Display the names of employee working in Kolkata and in HRD department.
Assignment - 4.3
Create bookstore database and apply primary key and foreign key constraint.
Book( booktitle, authorCode, Publisher, pubDate, Price, ISBN, copyright)
Publisher(pubID, pubName,URL)
Author(authorID, authorFname, authorLname )
Perform following queries:
a) List all the authors having last name starts with M.
b) List all books having ISBN number which includes 135 and 072.
c) List all books which were published after 2008.
d) List all Microsoft books with price less than Rs 100.
e) List all of the books whose title contains Excel 2007 and that are published by Wiley.
f) Update price of the book by decreasing its value by 12.43%.
Assignment -5.1
Assignment -5.2
An organization ABC maintains a database EmpDependent to record the following details about its
employees and their dependents.
EMPLOYEE(adhaarNo, Name, Address, Department, EmpID)
DEPENDENT(EmpID, dependentName, Relationship, noOfDependent)
Use the database to answer the following SQL queries:
a) Find the names of employees with their dependent names.
b) Find employee details working in a department, say, ‘PRODUCTION’.
c) Find names of employees working in a department, say, ‘SALES’ and having exactly two dependents.
Assignment - 6
a) Create simple, multiple item and split form on students database. Insert, update and delete data through the
simple form you have created.
b) Add Buttons on the student information form for Insert ,Save new Record, Quit Application and Go to first Row.
c) Create a Form on the query based on Employee and Department (assignment no 3.1(a)). The fields are EmpID,
EmpName, DeptName.
i. Apply a logo and date time.
ii. Give appropriate color to the fields and labels.
iii. Change the font size and font color for fields
iv. Change the background color.
Assignment -7
Assignment-8
Create a table of CarInfo having column carID, CarType, CarColor, CarNumber, SaleValue, and City. Insert
10 entries.
Assignment -9
Create two tables –Teachers( TeacherId, Tname, TAddress,ClassTeacher) and Student (StudentID, SName, Sclass,
TeacherId). In Student table make a lookup column for teacherId. Make another lookup column by value on the Sclass
Column.