Viewing 15 posts - 1 through 15 (of 33 total)
INSERT INTO dbo.mixedwords (
July 17, 2017 at 7:27 am
Yes that's correct Chris..
SELECT
COL1, Col2, Col3, First_Bal, First_Qty, S_Balance
, First_bal - S_Balance AS New_Balance
FROM (
SELECT COL1, Col2, Col3, SUM(Balance)...
July 17, 2017 at 5:44 am
adding ALIAS NAME for a derived table.
SELECT
COL1, Col2, Col3, First_Bal, First_Qty, S_Balance
, First_bal - S_Balance AS New_Balance
FROM (
SELECT COL1, Col2, Col3, SUM(Balance)...
July 17, 2017 at 1:07 am
Thanks a lot Jeff for such an exploring content though you had understood the problem definition incorrect which helped us in different way..
Thanks
June 30, 2017 at 6:47 am
Please post DDL and DML statements for the above table structure. so that it would be easy for others to address you.
June 30, 2017 at 6:31 am
Thanks a lot Eirik for the reply.
Thom i have updated the solution part for the clear readability purpose.
June 22, 2017 at 8:08 am
Thanks Steve for the valuable suggestions.
I will try to implement the same.
May 29, 2017 at 1:45 am
Thank you all for the suggestions.
Thank you John ,Luis, Patrick, Scott and Lowell.
May 23, 2017 at 1:39 am
Thanks you sean lange for the quick replies.
you can use the wdate the first column for ordering.(May be i was given wrong sample data)
June 2, 2014 at 12:17 pm
i want to set the Cdate seven days less than the rundate for the first Aid and 14 days less than the run date for the
second entry in the...
June 2, 2014 at 12:01 pm
Viewing 15 posts - 1 through 15 (of 33 total)