0% found this document useful (0 votes)
48 views1 page

Assigment 2 & 3 Bank Databse

This document outlines the database tables for a banking enterprise including Branch, Account, Depositor, Customer, Loan, and Borrower with details on their attributes. The Branch table tracks branch names, cities, and assets. The Account table includes account numbers, associated branches, and balances. Depositor links customers to their accounts. Customer stores customer details. Loan tracks loan numbers, branches, and amounts. And Borrower connects customers to their loans.
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
0% found this document useful (0 votes)
48 views1 page

Assigment 2 & 3 Bank Databse

This document outlines the database tables for a banking enterprise including Branch, Account, Depositor, Customer, Loan, and Borrower with details on their attributes. The Branch table tracks branch names, cities, and assets. The Account table includes account numbers, associated branches, and balances. Depositor links customers to their accounts. Customer stores customer details. Loan tracks loan numbers, branches, and amounts. And Borrower connects customers to their loans.
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
You are on page 1/ 1

Consider the following database for a banking enterprise:

 Branch (branch-name: string, branch-city: string, assets: real)


 Account (accno: int, branch-name: string, balance: real)
 Depositor (customer-name: string, accno: int)
 Customer (customer-name: string, customer-street: string, customer-city: string)
 Loan (loan-number: int, branch-name: string, amount: real)
 Borrower (customer-name: string, loan-number: int)

You might also like