write a query to create a table with following structure
Attachments:
Answers
Answered by
9
Answer:
CREATE TABLE Product(Field,PID,Pname,Description,Price) (Datatype, char (4),varchar (40),decimal);
Answered by
5
Query to create a table :
Explanation:
CREATE TABLE Product (PID (4), Pname (20), Description (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