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)
12 views
4 pages
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)
12 views
4 pages
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
Download
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
SQL Final
PDF
No ratings yet
SQL Final
76 pages
Temperature Controlled Exhaust Fan Report
PDF
No ratings yet
Temperature Controlled Exhaust Fan Report
36 pages
2
PDF
No ratings yet
2
14 pages
NITIN Rdbms Assignment
PDF
No ratings yet
NITIN Rdbms Assignment
131 pages
4.introduction To SQL
PDF
No ratings yet
4.introduction To SQL
53 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
Practical No 09
PDF
No ratings yet
Practical No 09
9 pages
Untitled Document
PDF
No ratings yet
Untitled Document
27 pages
DBMS Lab Record 2017-18 2.0
PDF
No ratings yet
DBMS Lab Record 2017-18 2.0
57 pages
DBML 2
PDF
No ratings yet
DBML 2
9 pages
B.Tech DBMS Syllabus-1
PDF
No ratings yet
B.Tech DBMS Syllabus-1
12 pages
10SQL DML
PDF
No ratings yet
10SQL DML
5 pages
EXP7 Dbms Final
PDF
No ratings yet
EXP7 Dbms Final
5 pages
DBMS Solution
PDF
No ratings yet
DBMS Solution
9 pages
DBMS Practicals Sem 3 Mca Idol - Shree Ram College
PDF
100% (3)
DBMS Practicals Sem 3 Mca Idol - Shree Ram College
34 pages
16.017-EN.1.0.20240613-Raise3D ideaMaker User Manual V.5.0.6.8380
PDF
No ratings yet
16.017-EN.1.0.20240613-Raise3D ideaMaker User Manual V.5.0.6.8380
297 pages
Dbms 1
PDF
No ratings yet
Dbms 1
19 pages
Cse2074 DBMS Lab Manual
PDF
No ratings yet
Cse2074 DBMS Lab Manual
19 pages
Bank Database: Table Queries
PDF
No ratings yet
Bank Database: Table Queries
22 pages
Create Database Practical1
PDF
No ratings yet
Create Database Practical1
6 pages
Assignment 2
PDF
No ratings yet
Assignment 2
8 pages
SP ex-2
PDF
No ratings yet
SP ex-2
4 pages
R 73
PDF
No ratings yet
R 73
8 pages
DBMS Practical 1
PDF
No ratings yet
DBMS Practical 1
6 pages
Database Lab 02
PDF
No ratings yet
Database Lab 02
5 pages
Assignment No 2 Dbmsss
PDF
No ratings yet
Assignment No 2 Dbmsss
6 pages
Lab6 To Lab9
PDF
No ratings yet
Lab6 To Lab9
19 pages
92 lab 4
PDF
No ratings yet
92 lab 4
22 pages
Ss Dbms
PDF
No ratings yet
Ss Dbms
6 pages
bhikas dbms 3 (1)
PDF
No ratings yet
bhikas dbms 3 (1)
3 pages
ASSIGNMENT -2
PDF
No ratings yet
ASSIGNMENT -2
4 pages
Database Lab Program
PDF
No ratings yet
Database Lab Program
6 pages
Bank
PDF
No ratings yet
Bank
14 pages
i.MX_Graphics_User's_Guide
PDF
100% (1)
i.MX_Graphics_User's_Guide
182 pages
Banking Database
PDF
No ratings yet
Banking Database
5 pages
Prac 1,2,3
PDF
No ratings yet
Prac 1,2,3
19 pages
Assignment 2
PDF
No ratings yet
Assignment 2
3 pages
data of sql
PDF
No ratings yet
data of sql
4 pages
Dbms Lab1
PDF
No ratings yet
Dbms Lab1
9 pages
DEMAND
PDF
No ratings yet
DEMAND
9 pages
LAB4
PDF
No ratings yet
LAB4
10 pages
Assignment 2
PDF
No ratings yet
Assignment 2
8 pages
DBMS Experiment-6
PDF
No ratings yet
DBMS Experiment-6
8 pages
Lab Experiment 8 & 9
PDF
No ratings yet
Lab Experiment 8 & 9
5 pages
Labfile ADBMS
PDF
No ratings yet
Labfile ADBMS
27 pages
Queries On BANK Database
PDF
No ratings yet
Queries On BANK Database
8 pages
DB 1 12
PDF
No ratings yet
DB 1 12
3 pages
SQL Queries 2
PDF
No ratings yet
SQL Queries 2
8 pages
Week2-Assessment
PDF
No ratings yet
Week2-Assessment
3 pages
L04 1a
PDF
No ratings yet
L04 1a
11 pages
DB 1 11
PDF
No ratings yet
DB 1 11
3 pages
Library Database
PDF
No ratings yet
Library Database
6 pages
Banking System
PDF
No ratings yet
Banking System
6 pages
Iit2021034 Assignment DBMS
PDF
No ratings yet
Iit2021034 Assignment DBMS
7 pages
DB 1 10
PDF
No ratings yet
DB 1 10
3 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
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
JD Edwards TC
PDF
No ratings yet
JD Edwards TC
158 pages
2019 Final Experiment Test - Solution
PDF
No ratings yet
2019 Final Experiment Test - Solution
4 pages
Venkat DB Bank Project
PDF
No ratings yet
Venkat DB Bank Project
6 pages
Bank Database
PDF
No ratings yet
Bank Database
3 pages
Bank Tables
PDF
No ratings yet
Bank Tables
8 pages
Automated Hardware Testing Using Python
PDF
67% (3)
Automated Hardware Testing Using Python
31 pages
Unit-IV System Design
PDF
No ratings yet
Unit-IV System Design
64 pages
Sample Test Questions On ABAP Programming
PDF
No ratings yet
Sample Test Questions On ABAP Programming
216 pages
Building Transformer Models With Attention Crash Course Build A Neural Machine Translator in 12 Days
PDF
No ratings yet
Building Transformer Models With Attention Crash Course Build A Neural Machine Translator in 12 Days
33 pages
Jimma University Jimma Institute of Technology Mega Project Proposal
PDF
No ratings yet
Jimma University Jimma Institute of Technology Mega Project Proposal
9 pages
HUAWEI IdeaHub S2 Datasheet
PDF
No ratings yet
HUAWEI IdeaHub S2 Datasheet
12 pages
VR Facial Animation Via Multiview Image Translation PDF
PDF
No ratings yet
VR Facial Animation Via Multiview Image Translation PDF
16 pages
CAS67Afaultcodes 3
PDF
No ratings yet
CAS67Afaultcodes 3
20 pages
Report (2) India
PDF
No ratings yet
Report (2) India
1 page
Demand Planning Workshop D2S1
PDF
100% (1)
Demand Planning Workshop D2S1
18 pages
Syllabus - Object Oriented Programming (Java)
PDF
No ratings yet
Syllabus - Object Oriented Programming (Java)
14 pages
Cad Orthogonal
PDF
No ratings yet
Cad Orthogonal
12 pages
Software Engineer (PPS-7)
PDF
No ratings yet
Software Engineer (PPS-7)
5 pages
Lowpass and Bandpass Filter On Speech Signal Using Matlab Tools-Tutorial
PDF
No ratings yet
Lowpass and Bandpass Filter On Speech Signal Using Matlab Tools-Tutorial
9 pages
Linq Cheat Sheet
PDF
No ratings yet
Linq Cheat Sheet
2 pages
Erp Functional Modules
PDF
No ratings yet
Erp Functional Modules
36 pages
IBIS Guardian TrueVector ESP - Web - Version
PDF
No ratings yet
IBIS Guardian TrueVector ESP - Web - Version
4 pages
Template - Unit Test Case
PDF
No ratings yet
Template - Unit Test Case
10 pages
Ah en TP (G) XXXSXX Hmi Firmware Upgrade 107453 en 00
PDF
No ratings yet
Ah en TP (G) XXXSXX Hmi Firmware Upgrade 107453 en 00
5 pages
CS 211/211H Object Oriented Programming Syllabus
PDF
No ratings yet
CS 211/211H Object Oriented Programming Syllabus
10 pages
Product Keys12
PDF
No ratings yet
Product Keys12
3 pages
XSD (XML Schema Definition) Overview
PDF
No ratings yet
XSD (XML Schema Definition) Overview
4 pages
USA New York DL Online Generator - Verif Tools
PDF
No ratings yet
USA New York DL Online Generator - Verif Tools
1 page
Cloud Platform Architecture Over Virtualized Data
PDF
No ratings yet
Cloud Platform Architecture Over Virtualized Data
10 pages
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
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
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