Forum Replies Created

Viewing post 1 (of 1 total)

  • RE: Split Row into Multiple Rows

    Hi All,

    When recursive  data extracts are required, try CTE:

    DECLARE @SPLITROW TABLE
    (ORDER_NUMBER INT
    , PRODUCT_ID INT
    , QTY INT
    , VALUE MONEY
    )

Viewing post 1 (of 1 total)