Computer Science, asked by anshulisgreat, 1 year ago

Write command to create table named ‘BOOK ‘ with following fields:
BOOK ID Char(4)
Bname Varchar(15)
Author Varchar(20)
Price Decimal

Answers

Answered by rishiraut123
7

Just refer to image to get to know all your doubt cleared

Attachments:

Anonymous: can diffentiate between (i) char and vanchar data type
Answered by anikamalik15
6

create table book(BookID char(4), Bname varchar(15), Author varchar(20), price decimal)

Similar questions