Forum Replies Created

Viewing post 1 (of 1 total)

  • RE: To Convert Output from Column format to a Row

    Hi Guys,

    I had the same problem, but my table design is a little different

     

    DROP TABLE metaTable;

    DROP TABLE metaType;

    DROP TABLE metaAttribute;

    DROP TABLE metaValue;

    CREATE TABLE metaTable(

      ID   INT,

      Name VARCHAR(80)

    );

    INSERT INTO metaTable(ID,...

Viewing post 1 (of 1 total)