Math, asked by sanjana6417, 1 year ago

Add the not null constraint in the product_master table with the columns description, profit percent, sell price and cost price.

Answers

Answered by siddhartharao77
2
Alter table product_master

           modify(description varchar2(15) constraint con1 NOT NULL)

           modify(profit percent number(4,3) constraint con2 NOT NULL)

           modify(sell price number constraint con3 NOT NULL)

           modify(cost price number constraint con4 NOT NULL)
Similar questions