condition for the problem to be solved:
The code i tried to do is
create table article (
ArCode CHAR(5),
ArName VARCHAR(30) NOT NULL ,
Rate Number(8,2) ,
Quantity NUMBER(4) CHECK (Quantity>0) DEFAULT 0 ,
Class CHAR(1)
);
I couldn't solve the first condition and so i am getting right parenthesis missing for final condition