Banking Database Data Bank
Banking Database Data Bank
Banking Database Data Bank
BANKING DATABASE
DATA BANK
Data bank may also refer to an organization primarily concerned with the
construction and maintenance of such a database. The term databank is also
obsolete (1960s through 1970s) computer jargon for database itself, and is
frequently used in that sense in materials written in that period
ACCOUNT
SQL>Create table account
(Account_ number char (5) not null primary key,
Branch_ name varchar (15),
Balance double
);
BRANCH
SQL> create table if not exists branch
(Branch_ name varchar (10) not null primary key,
Branch-city varchar (10),
Assets double
);
CUSTOMER
SQL> create table if not exists customer
(Customer _ name varchar (20) not null primary key,
Customer_ street varchar (20),
Customer_ city varchar (10)
);
LOAN
BORROWER
SQL>create table if not exists borrower
(Customer_ name varchar (20) not null,
Loan_ number varchar (5) not null,
Primary key (customer_ name, loan_ number)
);
DEPOSITE
SQL> create table if not exists depositor
(Customer_ name varchar (20) not null,
Account_ number char (5) not null,
Primary key (customer_ name, account_ number)
);
EMPLOYEE
SQL>create table if not exists employee
(Employee_ name varchar (20) not null,
Branch_ name varchar (10) not null,
Salary double, primary key (employee_ name, branch_ name)
);
ACCOUNT
Insert into account values ('A-101', 'Downtown', 500);
Insert into account values ('A-102', 'Perry ridge', 400);
Insert into account values ('A-201', 'Brighton', 900);
Insert into account values ('A-215', 'Mianus', 700);
Insert into account values ('A-217', 'Brighton', 750);
Insert into account values ('A-222', 'Redwood', 700);
Insert into account values ('A-305', 'Round Hill', 350);
BRANCH
Insert into branch values ('Brighton', 'Brooklyn', 7100000);
Insert into branch values ('Downtown', 'Brooklyn', 9000000);
Insert into branch values ('Mianus', 'Horse neck', 400000);
Insert into branch values ('North Town', 'Rye', 3700000);
Insert into branch values ('Perry ridge', 'Horse neck', 1700000);
Insert into branch values ('Pownal', 'Bennington', 300000);
Insert into branch values ('Redwood', 'Palo Alto', 2100000);
Insert into branch values ('Round Hill', 'Horse neck', 8000000);
CUSTOMER
Insert into customer values ('Adams', ‘spring', 'Pittsfield');
Insert into customer values ('Brooks', 'Senator', 'and Brooklyn’);
DEPOSITE
Insert into depositor values ('Hayes', 'A-102');
Insert into depositor values ('Johnson', 'A-102');
Insert into depositor values ('Johnson', 'A-201');
Insert into depositor values ('Jones', 'A-217');
Insert into depositor values ('Lindsay', 'A-222');
Insert into depositor values ('Smith', 'A-215');
Insert into depositor values ('Turner', 'A-305');
LOAN
Insert into loan values ('L-11', 'Round Hill', 900);
Insert into loan values ('L-14', 'Downtown', 1500);
Insert into loan values ('L-15', 'Perry ridge', 1500);
Insert into loan values ('L-16', 'Perry ridge', 1300);
Insert into loan values ('L-17', 'Downtown', 1000);
Insert into loan values ('L-23', 'Redwood', 2000);
COMPUTER SCIENCE AND ENGG 2019-20 Page 5
BANKING DATABASE
BORROWER
Insert into borrower values ('Adams', 'L-16 ');
Insert into borrower values ('Curry', 'L-93');
Insert into borrower values ('Hayes', 'L-15');
Insert into borrower values ('Jackson', 'L-14 ');
Insert into borrower values ('Jones', 'L-17');
EMPLOYEE