Advertisements
Advertisements
Question
Write SQL query to add a column totalprice with data type numeric and size 10, 2 in a table product.
Code Writing
Advertisements
Solution
ALTER TABLE product
ADD totalprice NUMERIC(10, 2);shaalaa.com
Is there an error in this question or solution?
