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

1 HW

The document creates three tables: Finance for policy details, Checking for account transactions, and Customer for customer profiles and balances.

Uploaded by

Shylender Naga
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as TXT, PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
25 views1 page

1 HW

The document creates three tables: Finance for policy details, Checking for account transactions, and Customer for customer profiles and balances.

Uploaded by

Shylender Naga
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as TXT, PDF, TXT or read online on Scribd
You are on page 1/ 1

create table Finance

(
policy_number number,
pol_hol_name varchar(20),
no_of_periods Number,
interest_per_year number,
percent_value Number,
);

create table Checking


(
Acct_name varchar(20),
Acct_number varchar(50),
Beggining_bal number,
deposits number,
withdrawls number,
payments number,
ending_balance number
);

create table Customer


(
Cust_id Number,
date_opened date,
cust_name varchar(50),
cust_address varchar(50),
Beginning_balance number,
deposits number,
withdrawls number
);

You might also like