0% found this document useful (0 votes)
22 views

Question 1 Ans

The document describes creating a Stock table with columns for product ID, name, purchase price, sale price, and quantity.

Uploaded by

sidra anjum
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
22 views

Question 1 Ans

The document describes creating a Stock table with columns for product ID, name, purchase price, sale price, and quantity.

Uploaded by

sidra anjum
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
You are on page 1/ 1

Create table Stock(

pId int not null PRIMARY key,


Name varchar(50),
pPRICE decimal(18,2),
sPRICE decimal(18,2),
Quantity int
)

You might also like