How can I create table Book
Book ID Char(4)
Bname. Varchar (15)
Author. Vachar (20)
Price. Decimal
Answers
Answered by
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
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
Math,
7 months ago
Social Sciences,
7 months ago
Computer Science,
7 months ago
Chemistry,
1 year ago
Social Sciences,
1 year ago
Social Sciences,
1 year ago
Science,
1 year ago