7 lines
145 B
MySQL
7 lines
145 B
MySQL
|
create table Accounts (
|
||
|
customer_id varchar(16) not null,
|
||
|
acc_number varchar(16) not null,
|
||
|
branch_id decimal(8,0),
|
||
|
balance decimal(16,4)
|
||
|
);
|