• anuj12paritosh (12/19/2012)


    hi All ,

    I have a table and columns with data is mention below :-

    Table :- ORDER

    COLUMN and values :-

    ROWNUMORDERIDBALANCEQUANTITY

    1 19 5

    2 92 5

    i want to deduct balance quantity 8 with sum of both rows

    so how can we deduct from same

    after deduction the result will be :-

    ROWNUMORDERIDBALANCEQUANTITY

    1 19 0

    2 92 2

    Thanks in advance.

    It seems you are pretty new around here. There is no chance anybody can do much here because you didn't actually provide any details. We need to have ddl (create table scripts), sample data (insert statements) and desired output based on your sample data. Please see the first link in my signature for best practices when posting questions.

    _______________________________________________________________

    Need help? Help us help you.

    Read the article at http://www.sqlservercentral.com/articles/Best+Practices/61537/ for best practices on asking questions.

    Need to split a string? Try Jeff Modens splitter http://www.sqlservercentral.com/articles/Tally+Table/72993/.

    Cross Tabs and Pivots, Part 1 – Converting Rows to Columns - http://www.sqlservercentral.com/articles/T-SQL/63681/
    Cross Tabs and Pivots, Part 2 - Dynamic Cross Tabs - http://www.sqlservercentral.com/articles/Crosstab/65048/
    Understanding and Using APPLY (Part 1) - http://www.sqlservercentral.com/articles/APPLY/69953/
    Understanding and Using APPLY (Part 2) - http://www.sqlservercentral.com/articles/APPLY/69954/