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)
10 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)
10 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
DP900 ExamTopics Question 241 - 285
PDF
No ratings yet
DP900 ExamTopics Question 241 - 285
14 pages
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
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 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
Database Lab Questions On Views
PDF
No ratings yet
Database Lab Questions On Views
6 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
Create Table Function in SQL Using SAP HANA Studio PDF
PDF
No ratings yet
Create Table Function in SQL Using SAP HANA Studio PDF
7 pages
D7 DevelopersGuide (0624-0833)
PDF
No ratings yet
D7 DevelopersGuide (0624-0833)
210 pages
Shelly
PDF
No ratings yet
Shelly
24 pages
Dbms Experiment 3
PDF
No ratings yet
Dbms Experiment 3
4 pages
Copy A SQL Server Database With Just The Objects and No Data
PDF
No ratings yet
Copy A SQL Server Database With Just The Objects and No Data
10 pages
Final
PDF
No ratings yet
Final
27 pages
DBMS MCQ
PDF
No ratings yet
DBMS MCQ
9 pages
PL SQL Interview - Career Ride - Imp
PDF
No ratings yet
PL SQL Interview - Career Ride - Imp
392 pages
Oracle PLSQL Interview Adv
PDF
No ratings yet
Oracle PLSQL Interview Adv
25 pages
SQL
PDF
No ratings yet
SQL
13 pages
SQL. Interview Questions
PDF
No ratings yet
SQL. Interview Questions
37 pages
PLSQL 2 3 Practice
PDF
No ratings yet
PLSQL 2 3 Practice
3 pages
Chapter 1: Introduction Database Management System (DBMS)
PDF
No ratings yet
Chapter 1: Introduction Database Management System (DBMS)
3 pages
Senior Software Engineer 1
PDF
No ratings yet
Senior Software Engineer 1
4 pages
SQL Exercise-Text Book Table: Department
PDF
No ratings yet
SQL Exercise-Text Book Table: Department
22 pages
MTCA13102 RDBMS PracticalList
PDF
No ratings yet
MTCA13102 RDBMS PracticalList
13 pages
DBMS Functions: MMS 144 - Principles of Multimedia Information Management
PDF
No ratings yet
DBMS Functions: MMS 144 - Principles of Multimedia Information Management
43 pages
316Queries
PDF
No ratings yet
316Queries
18 pages
WINSEM2024-25_STS4003_TH_AP2024254001066_2025-03-11_Reference-Material-I
PDF
No ratings yet
WINSEM2024-25_STS4003_TH_AP2024254001066_2025-03-11_Reference-Material-I
25 pages
Oracle Developer Syllabus
PDF
No ratings yet
Oracle Developer Syllabus
15 pages
UNIT 4
PDF
No ratings yet
UNIT 4
12 pages
Sqli Filter Evasion and Obfuscation: Johannes Dahse, Prague, Czech Republic, 29-30.11.2010
PDF
No ratings yet
Sqli Filter Evasion and Obfuscation: Johannes Dahse, Prague, Czech Republic, 29-30.11.2010
67 pages
SQL MCQ Questions and Answers Page-8 Section-1
PDF
No ratings yet
SQL MCQ Questions and Answers Page-8 Section-1
5 pages
Hema Resume. Java
PDF
No ratings yet
Hema Resume. Java
10 pages
DBS LAB -A & B CO-PO JUSTIFICATION
PDF
No ratings yet
DBS LAB -A & B CO-PO JUSTIFICATION
2 pages
Certificate
PDF
No ratings yet
Certificate
18 pages
Data Warehouse Matrix
PDF
No ratings yet
Data Warehouse Matrix
7 pages
Speeding Up and Purging Workflow
PDF
No ratings yet
Speeding Up and Purging Workflow
7 pages
MCS 023 Previous Year Question Papers by Ignouassignmentguru
PDF
No ratings yet
MCS 023 Previous Year Question Papers by Ignouassignmentguru
90 pages