Open navigation menu
Close suggestions
Search
Search
en
Change Language
Upload
Sign in
Sign in
Download free for days
0 ratings
0% found this document useful (0 votes)
11 views
Experiment8 Dbms
Uploaded by
mystifyingdhawan9
AI-enhanced title
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
Download now
Download
Save Experiment8 dbms For Later
Download
Save
Save Experiment8 dbms For Later
0%
0% found this document useful, undefined
0%
, undefined
Embed
Share
Print
Report
0 ratings
0% found this document useful (0 votes)
11 views
Experiment8 Dbms
Uploaded by
mystifyingdhawan9
AI-enhanced title
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
Download now
Download
Save Experiment8 dbms For Later
Carousel Previous
Carousel Next
Save
Save Experiment8 dbms For Later
0%
0% found this document useful, undefined
0%
, undefined
Embed
Share
Print
Report
Download now
Download
You are on page 1
/ 4
Search
Fullscreen
Name - Sourabh Suresh Bandgar
Roll no - 10
Title: Views, Constraints and Subqueries
mysql> create database Exp8;
Query OK, 1 row affected (0.01 sec)
mysql> use Exp8;
Database changed
mysql> create table loan(loan_no int primary key,branchname
varchar(50), amount int);
Query OK, 0 rows affected (0.04 sec)
mysql> insert into loan values
-> (363,'Kolhapur',35000),
-> (797,'Sangli',8578),
-> (825,'Latur',7845);
Query OK, 3 rows affected (0.01 sec)
Records: 3 Duplicates: 0 Warnings: 0
mysql> create table depositor(customerName varchar(50),accountNumber
int);
Query OK, 0 rows affected (0.03 sec)
mysql> insert into depositor values
-> ('Shreyas',12),
-> ('Sourabh',53),
-> ('Sharad',47),
-> ('Uddhav',53),
-> ('Narendra',45),
-> ('Rahul',49),
-> ('Arvind',54);
Query OK, 7 rows affected (0.01 sec)
Records: 7 Duplicates: 0 Warnings: 0
mysql> create table borrower(CustomerName varchar(50),loanNumber
int);
Query OK, 0 rows affected (0.03 sec)
mysql> insert into borrower values
-> ('Omkar',345),
-> ('Ayush',797),
-> ('Avishkar',586),
-> ('Raviraj',825),
-> ('Viraj',363);
Query OK, 5 rows affected (0.01 sec)
Records: 5 Duplicates: 0 Warnings: 0
mysql> create table account(accountNumber int primary Key,branchname
varchar
(50),balance int);
Query OK, 0 rows affected (0.03 sec)
mysql> insert into account values
-> (12,'Kolhapur',5454),
-> (16,'Latur',8792),
-> (32,'Rajarampuri',2525),
-> (45,'Latur',5647),
-> (47,'Latur',3853),
-> (49,'Latur',5315),
-> (53,'Shahupuri',4586),
-> (67,'Ichalkaranji',7474);
Query OK, 8 rows affected (0.04 sec)
Records: 8 Duplicates: 0 Warnings: 0
mysql> select * from account;
+---------------+--------------+---------+
| accountNumber | branchname | balance |
+---------------+--------------+---------+
| 12 | Kolhapur | 5454 |
| 16 | Latur | 8792 |
| 32 | Rajarampuri | 2525 |
| 45 | Latur | 5647 |
| 47 | Latur | 3853 |
| 49 | Latur | 5315 |
| 53 | Shahupuri | 4586 |
| 67 | Ichalkaranji | 7474 |
+---------------+--------------+---------+
8 rows in set (0.01 sec)
mysql> select * from borrower;
+--------------+------------+
| CustomerName | loanNumber |
+--------------+------------+
| Omkar | 345 |
| Ayush | 797 |
| Avishkar | 586 |
| Raviraj | 825 |
| Viraj | 363 |
+--------------+------------+
5 rows in set (0.00 sec)
mysql> select * from depositor;
+--------------+---------------+
| customerName | accountNumber |
+--------------+---------------+
| Shreyas | 12 |
| Sourabh | 53 |
| Sharad | 47 |
| Uddhav | 53 |
| Narendra | 45 |
| Rahul | 49 |
| Arvind | 54 |
+--------------+---------------+
7 rows in set (0.00 sec)
mysql> select * from loan;
+---------+------------+--------+
| loan_no | branchname | amount |
+---------+------------+--------+
| 363 | Kolhapur | 35000 |
| 797 | Sangli | 8578 |
| 825 | Latur | 7845 |
+---------+------------+--------+
3 rows in set (0.00 sec)
1.Create a view ‘all-customers’ consisting of branch names and the
names of customers who have either an account or a loan or both.
mysql> create view all_customers as select
depositor.customerName,account.branchname from depositor natural
join account union select borrower.customername,loan.branchname from
borrower natural join loan;
Query OK, 0 rows affected (0.03 sec)
mysql> select * from all_customers;
+--------------+------------+
| customerName | branchname |
+--------------+------------+
| Shreyas | Kolhapur |
| Sourabh | Shahupuri |
| Sharad | Latur |
| Uddhav | Shahupuri |
| Narendra | Latur |
| Rahul | Latur |
| Omkar | Latur |
| Omkar | Sangli |
| Omkar | Kolhapur |
| Ayush | Latur |
| Ayush | Sangli |
| Ayush | Kolhapur |
| Avishkar | Latur |
| Avishkar | Sangli |
| Avishkar | Kolhapur |
| Raviraj | Latur |
| Raviraj | Sangli |
| Raviraj | Kolhapur |
| Viraj | Latur |
| Viraj | Sangli |
| Viraj | Kolhapur |
+--------------+------------+
21 rows in set (0.01 sec)
2.Using view ‘all-customers’, list in alphabetic order, the
customers of ‘Latur’ branch.
mysql> SELECT customerName
-> FROM all_customers
-> WHERE branchName = 'Latur'
-> ORDER BY customerName;
+--------------+
| customerName |
+--------------+
| Avishkar |
| Ayush |
| Narendra |
| Omkar |
| Rahul |
| Raviraj |
| Sharad |
| Viraj |
+--------------+
8 rows in set (0.01 sec)
3.Create a view consisting of sum of the amounts of all the loans
for each branch.
mysql> CREATE VIEW Total AS
-> SELECT branchName, SUM(amount)
-> FROM Loan
-> GROUP BY branchName;
Query OK, 0 rows affected (0.01 sec)
mysql> select * from Total;
+------------+-------------+
| branchName | SUM(amount) |
+------------+-------------+
| Kolhapur | 35000 |
| Sangli | 8578 |
| Latur | 7845 |
+------------+-------------+
3 rows in set (0.01 sec)
You might also like
Queries On BANK Database
PDF
No ratings yet
Queries On BANK Database
8 pages
Oracle Database Security Interview Questions, Answers, and Explanations: Oracle Database Security Certification Review
From Everand
Oracle Database Security Interview Questions, Answers, and Explanations: Oracle Database Security Certification Review
equitypress
No ratings yet
A Plague of Tics
PDF
No ratings yet
A Plague of Tics
7 pages
Practical No 09
PDF
No ratings yet
Practical No 09
9 pages
R 73
PDF
No ratings yet
R 73
8 pages
10SQL DML
PDF
No ratings yet
10SQL DML
5 pages
Create Database Practical1
PDF
No ratings yet
Create Database Practical1
6 pages
EXP7 Dbms Final
PDF
No ratings yet
EXP7 Dbms Final
5 pages
DBMS Solution
PDF
No ratings yet
DBMS Solution
9 pages
Lab6 To Lab9
PDF
No ratings yet
Lab6 To Lab9
19 pages
Bank Tables
PDF
No ratings yet
Bank Tables
8 pages
2
PDF
No ratings yet
2
14 pages
Database Lab Program
PDF
No ratings yet
Database Lab Program
6 pages
DBML 2
PDF
No ratings yet
DBML 2
9 pages
L04 1a
PDF
No ratings yet
L04 1a
11 pages
2019 Final Experiment Test - Solution
PDF
No ratings yet
2019 Final Experiment Test - Solution
4 pages
LAB4
PDF
No ratings yet
LAB4
10 pages
Cse2074 DBMS Lab Manual
PDF
No ratings yet
Cse2074 DBMS Lab Manual
19 pages
SQL Queries 2
PDF
No ratings yet
SQL Queries 2
8 pages
Create Database Bank': Banking Example (Primary Key Is Underlined)
PDF
No ratings yet
Create Database Bank': Banking Example (Primary Key Is Underlined)
6 pages
Untitled Document
PDF
No ratings yet
Untitled Document
27 pages
DB 1 10
PDF
No ratings yet
DB 1 10
3 pages
DB 1 12
PDF
No ratings yet
DB 1 12
3 pages
Bank Database
PDF
No ratings yet
Bank Database
3 pages
data of sql
PDF
No ratings yet
data of sql
4 pages
DBMS Experiment-6
PDF
No ratings yet
DBMS Experiment-6
8 pages
Venkat DB Bank Project
PDF
No ratings yet
Venkat DB Bank Project
6 pages
SQL Final
PDF
No ratings yet
SQL Final
76 pages
bhikas dbms 3 (1)
PDF
No ratings yet
bhikas dbms 3 (1)
3 pages
Iit2021034 Assignment DBMS
PDF
No ratings yet
Iit2021034 Assignment DBMS
7 pages
Labfile ADBMS
PDF
No ratings yet
Labfile ADBMS
27 pages
Banking Database
PDF
No ratings yet
Banking Database
5 pages
Banking System
PDF
No ratings yet
Banking System
6 pages
Prac 1,2,3
PDF
No ratings yet
Prac 1,2,3
19 pages
SP ex-2
PDF
No ratings yet
SP ex-2
4 pages
NITIN Rdbms Assignment
PDF
No ratings yet
NITIN Rdbms Assignment
131 pages
Dbms Lab1
PDF
No ratings yet
Dbms Lab1
9 pages
Assignment 2
PDF
No ratings yet
Assignment 2
8 pages
Library Database
PDF
No ratings yet
Library Database
6 pages
Assignment 2
PDF
No ratings yet
Assignment 2
3 pages
DBMS Lab Record 2017-18 2.0
PDF
No ratings yet
DBMS Lab Record 2017-18 2.0
57 pages
Database Lab 02
PDF
No ratings yet
Database Lab 02
5 pages
DB 1 11
PDF
No ratings yet
DB 1 11
3 pages
Bank Database: Table Queries
PDF
No ratings yet
Bank Database: Table Queries
22 pages
DBMS Practical 1
PDF
No ratings yet
DBMS Practical 1
6 pages
Assignment No 2 Dbmsss
PDF
No ratings yet
Assignment No 2 Dbmsss
6 pages
Ss Dbms
PDF
No ratings yet
Ss Dbms
6 pages
Dbms 1
PDF
No ratings yet
Dbms 1
19 pages
Noteshub (Noteshub - Co.In) : Dbms Lab File 4 Semester
PDF
No ratings yet
Noteshub (Noteshub - Co.In) : Dbms Lab File 4 Semester
41 pages
Week2-Assessment
PDF
No ratings yet
Week2-Assessment
3 pages
Lab Experiment 8 & 9
PDF
No ratings yet
Lab Experiment 8 & 9
5 pages
4.introduction To SQL
PDF
No ratings yet
4.introduction To SQL
53 pages
Assignment 2
PDF
No ratings yet
Assignment 2
8 pages
Program-9: To Create View and Use of Insert, Delete, Select and Update Commands in View Viewing Contents of Employee Table
PDF
No ratings yet
Program-9: To Create View and Use of Insert, Delete, Select and Update Commands in View Viewing Contents of Employee Table
6 pages
ASSIGNMENT -2
PDF
No ratings yet
ASSIGNMENT -2
4 pages
DEMAND
PDF
No ratings yet
DEMAND
9 pages
Bank
PDF
No ratings yet
Bank
14 pages
DBMS Practicals Sem 3 Mca Idol - Shree Ram College
PDF
100% (3)
DBMS Practicals Sem 3 Mca Idol - Shree Ram College
34 pages
92 lab 4
PDF
No ratings yet
92 lab 4
22 pages
IBM System 360 RPG Debugging Template and Keypunch Card
From Everand
IBM System 360 RPG Debugging Template and Keypunch Card
Archive Classics
No ratings yet
Microsoft SC-300: Identity and Access Administrator - Certification Exam Prep
From Everand
Microsoft SC-300: Identity and Access Administrator - Certification Exam Prep
Steve Brown
No ratings yet
UNIT 3 Risk Management
PDF
No ratings yet
UNIT 3 Risk Management
36 pages
Mathematics P1 Nov 2009 Eng Memo
PDF
No ratings yet
Mathematics P1 Nov 2009 Eng Memo
17 pages
Tubular Vs Plate Type
PDF
No ratings yet
Tubular Vs Plate Type
1 page
ACT Modular Air Cooled Chiller Heat Pump Recovery TCA
PDF
No ratings yet
ACT Modular Air Cooled Chiller Heat Pump Recovery TCA
13 pages
Fashion Marketing Assignment (Chapter 3)
PDF
No ratings yet
Fashion Marketing Assignment (Chapter 3)
6 pages
Minor Project I
PDF
No ratings yet
Minor Project I
4 pages
12 cs practicals 1
PDF
No ratings yet
12 cs practicals 1
39 pages
3GPP TR 32.833
PDF
No ratings yet
3GPP TR 32.833
28 pages
DLL Environmentl Issue
PDF
No ratings yet
DLL Environmentl Issue
5 pages
Proposal For GNM WTP Revamping
PDF
No ratings yet
Proposal For GNM WTP Revamping
4 pages
Introduction Proe
PDF
No ratings yet
Introduction Proe
7 pages
Heap Leaching of Gold Ores in Northeastern Nevada
PDF
No ratings yet
Heap Leaching of Gold Ores in Northeastern Nevada
14 pages
Ele-02 SSP, MP & DB
PDF
No ratings yet
Ele-02 SSP, MP & DB
4 pages
ZEKTSER Geology and Ecosystems
PDF
No ratings yet
ZEKTSER Geology and Ecosystems
409 pages
Conveni Pack Technical Data (LRYCP DY1 R 407C)
PDF
No ratings yet
Conveni Pack Technical Data (LRYCP DY1 R 407C)
188 pages
Airbus Annual Report 2023 Overview
PDF
No ratings yet
Airbus Annual Report 2023 Overview
24 pages
IG_Transport-management-systems-TMS-EU_EN
PDF
No ratings yet
IG_Transport-management-systems-TMS-EU_EN
1 page
Dawn Vocabulary 5 Feb 2025
PDF
No ratings yet
Dawn Vocabulary 5 Feb 2025
3 pages
Kohlberg's Six Stages of Moral Reasoning Psychology)
PDF
No ratings yet
Kohlberg's Six Stages of Moral Reasoning Psychology)
1 page
Absolute C 6th edition Edition Savitch download
PDF
100% (1)
Absolute C 6th edition Edition Savitch download
45 pages
Biology Coursework Potato Osmosis
PDF
100% (2)
Biology Coursework Potato Osmosis
6 pages
Ethics Book 2019 PDF
PDF
No ratings yet
Ethics Book 2019 PDF
88 pages
Shape Robot Lesson Plan
PDF
No ratings yet
Shape Robot Lesson Plan
3 pages
DECANTER CENTRIFUGE NEW VERSION ENG (Recovered 1) PDF
PDF
No ratings yet
DECANTER CENTRIFUGE NEW VERSION ENG (Recovered 1) PDF
30 pages
Discrete Structures, Logic and Computability by James L. Hein
PDF
No ratings yet
Discrete Structures, Logic and Computability by James L. Hein
2 pages
Cat Logical Reasoning Question
PDF
100% (1)
Cat Logical Reasoning Question
2 pages
Characteristics-of-Different-Systems-of-Stratifications__
PDF
No ratings yet
Characteristics-of-Different-Systems-of-Stratifications__
11 pages
Cover Letter For Modeling Agency Example
PDF
100% (2)
Cover Letter For Modeling Agency Example
4 pages