Forum Replies Created

Viewing 2 posts - 1 through 3 (of 3 total)

  • RE: Trigger and Function Code

    CREATE TABLE PRODUCT

    PCODE VARCHAR2(8) PRIMARY KEY,

    PROD_NAME VARCHAR2(20) NOT NULL,

    PROD_CAT VARCHAR2(10) NOT NULL,

    PRICE NUMBER(9,3));

    CREATE TABLE DISCOUNT

    PROD_CAT VARCHAR2(10) PRIMARY KEY,

    DISCOUNT_RATE NUMBER(6) NOT NULL

    );

    CREATE TABLE SALES

    SLNO NUMBER(4) PRIMARY KEY,

    PCODE VARCHAR2(8) NOT NULL,

    PROD_NAME VARCHAR2(20)...

  • RE: Trigger and Function Code

    respected sir,

    i dont know how to insert image from my computer to show you the sample data in the tables. can i email you? can i get your email id?

Viewing 2 posts - 1 through 3 (of 3 total)