By A Web Design
Set cust_id as Primary key while creating the table.
This table will hold the customer information.
Column Name Data Type Size cust_id Int 10 cust_name Varchar 20 date_created Date opening_balance Float 10,2
Set cust_id of customer_Detail as Foreign key referencing the cust_id in the customer_master table while creating the table.
This table will hold the customer information in details.
Column Name Data Type Size cust_id Int 10 permanentaddr Varchar 35 offaddr1 Varchar 35 offaddr2 Varchar 35 pincode Int 6 landlineno Double mobileno Double offtelephone Double
Set transaction_id as Primary Key and cust_id as Foreign Key referencing the cust_id in the customer_master table.
This table holds the transaction details of the customer.
Column Name Data Type Size cust_id Int 10 transaction_id Int 15 name Varchar 15 chequeno Int 10 amount_deposit Float 10,2 amount_withdrawn Float 10,2 running_balance Float 10,2 dated Date