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

Create Table Account

Uploaded by

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

Create Table Account

Uploaded by

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

Create table account

(branch –numnbe char (15)


Account number char (10) not null
Balance integer
Primary key (account –number )
foreign key (branch _name reference branch )

Create table depositor


(customer –name char (20) not null
Account –number char (10) not null
Primary key (customer –name ,account –number )
Foregin key (account –number ) references account ,
Foregin key (customer –name ) references customer

Create assertion <asseration-name> check <predicate>mh

You might also like