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
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
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
pentacam
PDF
No ratings yet
pentacam
34 pages
Practical No 09
PDF
No ratings yet
Practical No 09
9 pages
10SQL DML
PDF
No ratings yet
10SQL DML
5 pages
DBMS Solution
PDF
No ratings yet
DBMS Solution
9 pages
Untitled Document
PDF
No ratings yet
Untitled Document
27 pages
EXP7 Dbms Final
PDF
No ratings yet
EXP7 Dbms Final
5 pages
Create Database Practical1
PDF
No ratings yet
Create Database Practical1
6 pages
DBML 2
PDF
No ratings yet
DBML 2
9 pages
SQL Final
PDF
No ratings yet
SQL Final
76 pages
R 73
PDF
No ratings yet
R 73
8 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
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
Assignment No 2 Dbmsss
PDF
No ratings yet
Assignment No 2 Dbmsss
6 pages
DBMS Practical 1
PDF
No ratings yet
DBMS Practical 1
6 pages
Ss Dbms
PDF
No ratings yet
Ss Dbms
6 pages
DBMS Lab Record 2017-18 2.0
PDF
No ratings yet
DBMS Lab Record 2017-18 2.0
57 pages
bhikas dbms 3 (1)
PDF
No ratings yet
bhikas dbms 3 (1)
3 pages
Assignment 2
PDF
No ratings yet
Assignment 2
3 pages
Bioqui Mica 6 Ed - Jeremy M Berg John L PDF
PDF
No ratings yet
Bioqui Mica 6 Ed - Jeremy M Berg John L PDF
1,134 pages
ASSIGNMENT -2
PDF
No ratings yet
ASSIGNMENT -2
4 pages
SP ex-2
PDF
No ratings yet
SP ex-2
4 pages
Code List With Code
PDF
No ratings yet
Code List With Code
22 pages
Cse2074 DBMS Lab Manual
PDF
No ratings yet
Cse2074 DBMS Lab Manual
19 pages
data of sql
PDF
No ratings yet
data of sql
4 pages
DBMS Practicals Sem 3 Mca Idol - Shree Ram College
PDF
100% (3)
DBMS Practicals Sem 3 Mca Idol - Shree Ram College
34 pages
Lab6 To Lab9
PDF
No ratings yet
Lab6 To Lab9
19 pages
Prac 1,2,3
PDF
No ratings yet
Prac 1,2,3
19 pages
Library Database
PDF
No ratings yet
Library Database
6 pages
SQL Queries 2
PDF
No ratings yet
SQL Queries 2
8 pages
Dbms 1
PDF
No ratings yet
Dbms 1
19 pages
Lab Experiment 8 & 9
PDF
No ratings yet
Lab Experiment 8 & 9
5 pages
Flash BTC Tutorial
PDF
67% (3)
Flash BTC Tutorial
31 pages
92 lab 4
PDF
No ratings yet
92 lab 4
22 pages
Bank
PDF
No ratings yet
Bank
14 pages
Database Lab 02
PDF
No ratings yet
Database Lab 02
5 pages
DEMAND
PDF
No ratings yet
DEMAND
9 pages
Mid Defense
PDF
No ratings yet
Mid Defense
68 pages
LAB4
PDF
No ratings yet
LAB4
10 pages
Banking Database
PDF
No ratings yet
Banking Database
5 pages
Labfile ADBMS
PDF
No ratings yet
Labfile ADBMS
27 pages
Database Lab Program
PDF
No ratings yet
Database Lab Program
6 pages
Introduction To Programming (C++) Introduction To Object Oriented Programming (OOP)
PDF
No ratings yet
Introduction To Programming (C++) Introduction To Object Oriented Programming (OOP)
12 pages
2
PDF
No ratings yet
2
14 pages
Banking System
PDF
No ratings yet
Banking System
6 pages
Iit2021034 Assignment DBMS
PDF
No ratings yet
Iit2021034 Assignment DBMS
7 pages
Assignment 2
PDF
No ratings yet
Assignment 2
8 pages
Bank Database
PDF
No ratings yet
Bank Database
3 pages
JDBC WT
PDF
No ratings yet
JDBC WT
43 pages
DBMS Experiment-6
PDF
No ratings yet
DBMS Experiment-6
8 pages
NLP_project_report
PDF
No ratings yet
NLP_project_report
21 pages
L04 1a
PDF
No ratings yet
L04 1a
11 pages
IO Port Programming
PDF
No ratings yet
IO Port Programming
60 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
MANUL010R2V2 - XCP Pro User Manual
PDF
No ratings yet
MANUL010R2V2 - XCP Pro User Manual
61 pages
DB 1 12
PDF
No ratings yet
DB 1 12
3 pages
MASTER Minecraft 101 Final
PDF
No ratings yet
MASTER Minecraft 101 Final
74 pages
Venkat DB Bank Project
PDF
No ratings yet
Venkat DB Bank Project
6 pages
Manual Solidwork
PDF
No ratings yet
Manual Solidwork
179 pages
Loop-O9400R Sdh/Sonet Adm User's Manual
PDF
No ratings yet
Loop-O9400R Sdh/Sonet Adm User's Manual
273 pages
Week2-Assessment
PDF
No ratings yet
Week2-Assessment
3 pages
IAM VOLTE Project Installation Presentation: Huawei Technologies Co., Ltd. Huawei Confidential
PDF
No ratings yet
IAM VOLTE Project Installation Presentation: Huawei Technologies Co., Ltd. Huawei Confidential
39 pages
2019 Final Experiment Test - Solution
PDF
No ratings yet
2019 Final Experiment Test - Solution
4 pages
DB 1 10
PDF
No ratings yet
DB 1 10
3 pages
Bank Database: Table Queries
PDF
No ratings yet
Bank Database: Table Queries
22 pages
Queries On BANK Database
PDF
No ratings yet
Queries On BANK Database
8 pages
DB 1 11
PDF
No ratings yet
DB 1 11
3 pages
Institute For Advanced Computing and Software Development (Iacsd), Akurdi
PDF
No ratings yet
Institute For Advanced Computing and Software Development (Iacsd), Akurdi
40 pages
Bank Tables
PDF
No ratings yet
Bank Tables
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
Changelog
PDF
No ratings yet
Changelog
13 pages
dearVR_SPATIAL_CONNECT_ADAPTER_Manual
PDF
No ratings yet
dearVR_SPATIAL_CONNECT_ADAPTER_Manual
7 pages
Coding Without Stack Overflow - Can It Be Done
PDF
No ratings yet
Coding Without Stack Overflow - Can It Be Done
8 pages
Web Engineering: DR Naima Iltaf Naima@mcs - Edu.pk
PDF
No ratings yet
Web Engineering: DR Naima Iltaf Naima@mcs - Edu.pk
52 pages
Cloud Data Engineering V1.0
PDF
No ratings yet
Cloud Data Engineering V1.0
5 pages
Flipper Zero Case Reinforced
PDF
No ratings yet
Flipper Zero Case Reinforced
7 pages
Nov - 2016 - NEO - Firmware Upgrade v130
PDF
No ratings yet
Nov - 2016 - NEO - Firmware Upgrade v130
6 pages
Lab 1
PDF
No ratings yet
Lab 1
12 pages
Acoustic Drawing List
PDF
No ratings yet
Acoustic Drawing List
6 pages
XMC Spi C
PDF
No ratings yet
XMC Spi C
5 pages
PST-WG107T English User Manual
PDF
No ratings yet
PST-WG107T English User Manual
14 pages
KIX3004-2024S1-Asgn
PDF
No ratings yet
KIX3004-2024S1-Asgn
2 pages
Cfp-Lab LAB Assignment C Code To Develop An ATM Machine
PDF
No ratings yet
Cfp-Lab LAB Assignment C Code To Develop An ATM Machine
2 pages
Class Diagram
PDF
No ratings yet
Class Diagram
1 page
Mark Vie Controller - Ucsb: Fact Sheet
PDF
No ratings yet
Mark Vie Controller - Ucsb: Fact Sheet
2 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