My Work
My Work
On
(21110208)
Submitted by
Himanshu H. Jikadara
(2308411020022)
Semester I
CERTIFICATE
Date: / /202
Date: / /
Place: RNGPIT, Bardoli
Topic
Sr.no Page.no
Create tables and execute various query on data insert in tables &
2
various options of LIKE predicate.
The term UI/UX stands for user interface/user experience design and refers to the practice of
designing digital products with a user-first approach. In other words, the point of UI/UX design
is to create a product that will be both visually appealing and highly pleasant to interact with.
PRATICAL - 1
3
Input:
CREATE TABLE DEPOSIT(ACTNO VARCHAR[5],CNAME VARCHAR[18],BNAME
VARCHAR[18],AMOUNT NUMBER(8,2),ADATE DATE);
INSERT INTO DEPOSIT VALUES ('101','SUNIL','AJNI',5000.00,'4-JAN-96');
INSERT INTO DEPOSIT VALUES ('102','MEHUL','KAROLBAGH',3500.00,'17-NOV-
95');
INSERT INTO DEPOSIT VALUES ('104','MADHURI','CHANDI',1200.00,'17-DEC-95');
INSERT INTO DEPOSIT VALUES ('105','PRMOD','M.G.ROAD',3000.00,'27-MAR-96');
INSERT INTO DEPOSIT VALUES ('106','SANDIP','ANDHERI',2000.00,'31-MAR-96');
INSERT INTO DEPOSIT VALUES ('107','SHIVANI','VIRAR',1000.00,'5-SEP-95');
INSERT INTO DEPOSIT VALUES ('108','KRANTI','NEHRU PLACE',5000.00,'2-JUL-95');
INSERT INTO DEPOSIT VALUES ('109','MINU','POWAI',7000.00,'10-AUG-95');
Output:
4
Input:
CREATE TABLE BRANCH (BNAME VARCHAR [50], CITY[20]);
INSERT INTO BRANCH VALUES ('VRCE','NAGPUR');
INSERT INTO BRANCH VALUES ('AJNI','NAGPUR');
INSERT INTO BRANCH VALUES ('KAROLBAGH','DELHI');
INSERT INTO BRANCH VALUES ('CHANDI','DELHI');
INSERT INTO BRANCH VALUES
('DHARAMPETH','NAGPUR'); INSERT INTO BRANCH
VALUES ('M.G.ROAD','BANGLORE'); INSERT INTO BRANCH
VALUES ('ANDHERI','BOMBAY'); INSERT INTO BRANCH
VALUES ('VIRAR','BOMBAY'); INSERT INTO BRANCH
VALUES ('NEHRU PLACE','DELHI'); INSERT INTO BRANCH
VALUES ('POWAI','BOMBAY');
Output::
5
INPUT:
OUTPUT:
6
INPUT:
OUTPUT:
7
ENROLLMENT:
2308411020065
1. List all data from table DEPOSIT.
8
ENROLLMENT: 2308411020065
3. List all data from CUSTOMERS.
SELECT*FROM CUSTOMER;
9
5. GIVE account no and amount of depositer.
OUTPUT:
10
7. Give name of customer who opened account after date „1/12/1996‟
SELECT CNAME FROM DEPOSIT WHERE ADATE='1-DEC-96';
OUTPUT:
11
PRATICAL - 2
12
AIM :Create tables and execute various query on data insert in
tables & various options of LIKE predicate.
OUTPUT:
13
2. Give details of account no. and deposited rupees of customers having
account opened between dates 01-01-06 and 25-07-06.
OUTPUT:
14
3. Display all jobs with minimum salary is greater than 4000.
OUTPUT:
OUTPUT:
OUTPUT:
15
To study various options of LIKE predicate
1. Display all employee whose name start with 'A' and third character
is 'a'.
OUTPUT :
OUTPUT:
16
3. Display the non-null values of employees and also employee name second
character should be 'n' and string should be 5 character long.
OUTPUT:
4. Display the null values of employee and also employee name's third
character should be 'a'.
OUTPUT:
OUTPUT:
EMPTY
17
PRATICAL - 3
18
3. AIM:Create an excel worksheet which contain students name and at least
5 subject marks. Apply various formulasfor total, average and percentage.
19
PRATICAL - 4
20
4. AIM: Study excel various formulas (Minimum 5).
SUM:
AVGRAGE:
21
PERCENTAGE: = (H11/250)
MAXIMUM:
22
MINIMUM:
23
PRATICAL : 5
24
5. AIM: Study Microsoft
access INTRODUCTION:
Database File
It is a file which stores the entire database. The database file is
saved to your hard drive or other storage devices.
Datatypes
Datatypes are the properties of each field. Every field has one
datatype like text, number, date, etc.
Table
A Table is an object which stores data in Row & Column
format to store data.
A Table is usually related to other tables in the database file.
Each column must have Unique name
We can also define Primary Key in a table.
25
Query
Queries answer a question by selecting and sorting
and filtering data based on search criteria.
Queries show a selection of data based on criteria (limitations)
you provide.
Queries can pull from one or more related Tables and other
Queries.
Types of Query can be SELECT, INSERT,
UPDATE, DELETE.
Form
A form is a database object that you can use to create a user
interface for a database application.
Forms help you to display live data from the table. It mainly
used to ease the process of data entry or editing.
Report
A report is an object in desktop databases primarily used for
formatting, calculating, printing, and summarizing selected
data.
You can even customize the report’s look and feel.
Macros
Macros are mini computer programming constructs. They allow you
to set up commands and processes in your forms, like, searching,
moving to another record, or running a formula.
Modules
Modules are procedures(functions) which you can write
using Visual Basic for Applications (VBA).
26
Advantages of MS Access
Now in this MS Access Tutorial, we will learn the pros/benefits for
using MS Access application:
Disadvantages of MS Access
Here, are the cons for using MS Access
27
Thank You
28