Closed abhiramsARS closed 3 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);
create table Transactions(Reference_No integer not null primary key,Account_No char(7) not null,Type char(2),Amount integer);
.
create table Accounts(Account_No char(7) not null primary key,Account_Holder varchar(20) not null,Phone_No char(11),Balance integer);
create table Transactions(Reference_No integer not null primary key,Account_No char(7) not null,Type char(2),Amount integer);