Forum Replies Created

Viewing post 1 (of 1 total)

  • RE: How to get the correct Return_Amt from a table?

    WOW! Thanks for your help. It solve my problem.

    jwlooi

    Kingston Dhasian (9/11/2013)


    One of the ways to achieve it..

    DECLARE@tableSTK TABLE

    (

    ItemIDVARCHAR(8),

    ItemDescVARCHAR(100),

    PriceMONEY

    )

    DECLARE @tableABC TABLE

    (

    ItemIDVARCHAR(8),

    ConditionAmtMONEY,

    Return_AmtMONEY

    )

    INSERT@tableSTK

    ( ItemID, ItemDesc,...

Viewing post 1 (of 1 total)