Computer Science, asked by harryrawat03, 10 months ago

write a query to create a table with the following structure

Attachments:

Answers

Answered by Arya7988
3

Answer:-   refer to attatchment

Attachments:
Answered by AskewTronics
3

Below are the query to create a table for the above data :-

Explanation:

CREATE TABLE Product (PID char(4), Pname varchar(20), Description varchar(40), price decimal);

  • The above query is used to create a table of the product with the above structure which is provided on the question part.
  • It is because the above query is used to create a table for any database which is used to hold the records.
  • The table is a collection of the attributes in which the attributes are used to represent the column and the row is used to hold the data.

Learn More:

  • CREATE TABLE : brainly.in/question/8476254
Similar questions