Computer Science, asked by vs8840049, 8 months ago

Create A Table Book as given below: Book Id Char(4) Bname Varchar(15) Author Varchar(20) Price Decimal ​

Answers

Answered by tsaini67890
1

ANSWER:-

Uuu899 yep that is fine for me by saying that he is the answer of the the day but if we can do it then we will be free from the 14th of August Until Sunday as we are away unit Tuesday and we would like to arrange for the rest to be done before the next meeting.

follow me...

hope it help.....

Answered by StaceeLichtenstein
0

The query to create the table Book is given below.

Explanation:

  • Create command is used to create the table in the database management System.The create is creating the schema in the database management system .
  • To create the table in the database we used the following syntax .

            Create table table_name(value1 datatype1,value 2,datatype2...soon).

So to create the table Book we used following query.

  • Create  table Book (Book Id Char (4) ,Bname Varchar (15) , Author Varchar (20) Price Decimal);

Learn More:

https://brainly.in/question/5540764

Similar questions