write a query to create a table with the following structure
Attachments:
Answers
Answered by
3
Answer:- refer to attatchment
Attachments:
Answered by
3
Below are the query to create a table for the above data :-
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 : brainly.in/question/8476254
Similar questions