This is my insert into statement:
INSERT INTO PRODUCT
VALUES
('PROD010', 'Kiwi milk tea', 'A milk tea that made from kiwi powder and other ingredients.', 4.50, 5.00);
But,what appear on the screen are PROD010, Kiwi milk tea, A milk tea that made from kiwi powder and other ingredients, 4.5 and 5
All zeros of 4.50 and 5.00 are disappear.
So, what should I do now so that all zeros can be displayed??
Codes of PRODUCT table:
CREATE TABLE PRODUCT(
PROD_ID VARCHAR(10) NOT NULL,
PROD_NAME VARCHAR(30),
PROD_DESC VARCHAR(70),
R_UNIT_PRICE NUMBER(3,2),
L_UNIT_PRICE NUMBER(3,2),
primary key (PROD_ID)
);