Write command to create table named ‘BOOK ‘ with following fields:
Attachments:
Answers
Answered by
4
Create table book ( bookid char (4),
Bname varchar (15),
Author varchar (20),
Price decimal );
Similar questions