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
Queries On BANK Database
PDF
No ratings yet
Queries On BANK Database
8 pages
SQL Datetime Conversion - String Date Convert Formats - SQLUSA PDF
PDF
No ratings yet
SQL Datetime Conversion - String Date Convert Formats - SQLUSA PDF
13 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
Question 3
PDF
No ratings yet
Question 3
59 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
T6043.DBMS_LAB1
PDF
No ratings yet
T6043.DBMS_LAB1
15 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
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
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
ORACLE PLSQL Mid Term Part 1 SOLUTIONS
PDF
No ratings yet
ORACLE PLSQL Mid Term Part 1 SOLUTIONS
17 pages
College Admission Predictor: A Project Report
PDF
100% (2)
College Admission Predictor: A Project Report
32 pages
Learning SQLite For iOS - Sample Chapter
PDF
No ratings yet
Learning SQLite For iOS - Sample Chapter
25 pages
Thiru DBMS Viva-FAQs
PDF
No ratings yet
Thiru DBMS Viva-FAQs
13 pages
Ans Key - First Model-Dec2022
PDF
No ratings yet
Ans Key - First Model-Dec2022
4 pages
DB2 v11.1 - Database Security Guide - Secbook
PDF
No ratings yet
DB2 v11.1 - Database Security Guide - Secbook
400 pages
SQL Revision 1
PDF
No ratings yet
SQL Revision 1
2 pages
Professional Summary:: Vishnu Vardhan
PDF
No ratings yet
Professional Summary:: Vishnu Vardhan
5 pages
ORA-4031 Questions
PDF
No ratings yet
ORA-4031 Questions
40 pages
Advanced DB Chapter One
PDF
No ratings yet
Advanced DB Chapter One
34 pages
SQL Quick Reference From W3Schools
PDF
No ratings yet
SQL Quick Reference From W3Schools
3 pages
BDA--_Module 5
PDF
No ratings yet
BDA--_Module 5
31 pages
PJCT 11-12
PDF
No ratings yet
PJCT 11-12
3 pages
CBDB3203 Database Implementation PDF
PDF
No ratings yet
CBDB3203 Database Implementation PDF
157 pages
Power Scripts Code Depot
PDF
No ratings yet
Power Scripts Code Depot
161 pages
When Do You Go For Data Transfer Transformation: Benefits
PDF
No ratings yet
When Do You Go For Data Transfer Transformation: Benefits
5 pages
ADF INTERVIEW Q&A
PDF
No ratings yet
ADF INTERVIEW Q&A
27 pages
Dork
PDF
No ratings yet
Dork
5 pages
Toad 9.0
PDF
No ratings yet
Toad 9.0
49 pages
Active Record 6 Query Interface
PDF
No ratings yet
Active Record 6 Query Interface
34 pages
Powerbiinterviewquestionspdfbyscholarhat 240716104017 E79d91b9
PDF
No ratings yet
Powerbiinterviewquestionspdfbyscholarhat 240716104017 E79d91b9
18 pages
Profile Option in Oracle Apps
PDF
No ratings yet
Profile Option in Oracle Apps
17 pages
CLASS 12 IP LTST Practical Programs (1) (1) FINAL
PDF
No ratings yet
CLASS 12 IP LTST Practical Programs (1) (1) FINAL
40 pages
Symantec Data Loss Prevention Upgrade Guide For Windows: February 4, 2021
PDF
No ratings yet
Symantec Data Loss Prevention Upgrade Guide For Windows: February 4, 2021
74 pages
Practical Exam Paper Class Xii Ip 2023
PDF
100% (1)
Practical Exam Paper Class Xii Ip 2023
5 pages
Cse2012 Dbms Lab Manual
PDF
No ratings yet
Cse2012 Dbms Lab Manual
69 pages
DBM S Manual Final
PDF
No ratings yet
DBM S Manual Final
51 pages
SQL Server Questions and Answers For Freshers - Sanfoundry
PDF
No ratings yet
SQL Server Questions and Answers For Freshers - Sanfoundry
7 pages
Payroll Full
PDF
No ratings yet
Payroll Full
117 pages