abhiramsARS / projectBnkMS

GNU General Public License v3.0
1 stars 0 forks source link

Database Architecture #1

Closed abhiramsARS closed 3 months ago

abhiramsARS commented 6 months ago

create table Accounts(Account_No char(7) not null primary key,Account_Holder varchar(20) not null,Phone_No char(11),Balance integer);

Image

create table Transactions(Reference_No integer not null primary key,Account_No char(7) not null,Type char(2),Amount integer);

Image

abhiramsARS commented 3 months ago

.