Viewing 3 posts - 1 through 3 (of 3 total)
specifically you asked like " you want this logic in looping concept" , thats why i have implemented that way, otherwise i would have tried in the efficient way...
December 29, 2011 at 8:51 pm
use the loop and insert into new table . Check with following code
declare @temp varchar(100)
select @temp ='ABC$$$DEF$EF'
select * from SplitDelimited ((replace(replace(replace(@temp,'$$$','-'),'$$','-'),'$','-')),'-')
if you want split methode , you can use...
December 28, 2011 at 7:11 am
3 Consective Period loop will go back. Please check the following code. if any other logic is available Please let me know.
[Code="sql"]
DROP TABLE #ClaCases
CREATE TABLE #ClaCases (ClaCaseID INT,ReceiverID int,...
December 28, 2011 at 6:43 am
Viewing 3 posts - 1 through 3 (of 3 total)