CBSE BOARD X, asked by HimanshuBhuarya6066, 1 year ago

How can I create table Book
Book ID Char(4)
Bname. Varchar (15)
Author. Vachar (20)
Price. Decimal

Answers

Answered by maloorajrishi
1

Create table Book (Book_ID char(4),

Bname varchar(15), Author varchar(20), price decimal);

Thats how you create the structure of the table

If you wanna check the structure out,

Type the follow code:-

desc Book;

Answered by kvaajayathish
2

Create table Book (Book_ID char(4),

Bname varchar(15), Author varchar(20), price decimal);

Thats how you create the structure of the table

If you wanna check the structure out,

Type the follow code:-

desc Book;

Similar questions