Computer Science, asked by asharawat8500, 11 months ago

write a query to create a table with following structure​

Attachments:

Answers

Answered by Janav
9

Answer:

CREATE TABLE Product(Field,PID,Pname,Description,Price) (Datatype, char (4),varchar (40),decimal);

Answered by AskewTronics
5

Query to create a table :

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 : https://brainly.in/question/8476254
Similar questions