Create table BOOK
BOOK ID Char (4)
Bname Varchar (15)
Author Varchar (20)
Price Decimal
Answers
Answered by
5
create table book (BOOK ID char (4),Bname varchar (15),Author varchar (20),Price decimal);
nathgeetam:
this is not the answer
Answered by
1
Answer :-
Create table is use to define a table in oracle.
CREATE TABLE BOOK (
BookId char (4) NOT NULL ,
Bname Varchar (15),
Author Varchar (20)),
Price Number (5,2)
CONSTRAINT book_pk PRIMARY KEY (BookId)
);
In the above example BookId has a NOT NULL constraint. Also BookId is the primary key assuming it will be unique for each book.
Similar questions
Political Science,
6 months ago
Social Sciences,
6 months ago
English,
6 months ago
English,
1 year ago
Hindi,
1 year ago
Biology,
1 year ago