Viewing 8 posts - 1 through 8 (of 8 total)
think I got it.
I did it using temp tables and Cursors.
Here is what I did.
Did a select and insert into Temporary table and then
DECLARE @ClientNbr Int,
...
May 28, 2010 at 8:42 am
Steve Jones - Editor (5/27/2010)
May 27, 2010 at 5:07 pm
lmu92 (5/27/2010)
raafi.shaafi (5/27/2010)
The only Input I have is Column1.
Then you'd need to use the value of Column2 as a fixed value, since there is no other way to exclude Column0(0)....
May 27, 2010 at 4:05 pm
The only Input I have is Column1.
May 27, 2010 at 3:17 pm
I got it resolved. I did a join with the subset of the results and created new column. and it worked for me.
March 18, 2009 at 1:41 pm
I think it would be better if I post actual string
Select InstallNum, RecordWrittenDt, PolicyEffectiveDt, ActivityType, (Case TransactionDes When Null Then TransactionCd Else TransactionDes End) As TransactionCd, ActivityAmt, InstallBalanceAmt,ISNull(ReceiptTypeCd,'') as ReceiptTypeCd,ISNull(ReceiptId,'')...
March 18, 2009 at 11:14 am
Viewing 8 posts - 1 through 8 (of 8 total)