WITH table AS
CURSOR
लूप में परिणाम कैसे प्राप्त करें? कैसे मेरे तालिकासंग्रहित प्रक्रिया चलाने के लिए कर्सर लूप के भीतर तालिका के साथ कैसे उपयोग करें
How to read all records recursively and show by level depth TSQL
;with C as
(
definition ...
)
मैं कर्सर पाश जहाँ मैं table
declare @id int, @parent int
declare cur cursor local fast_forward
for
select id, parent from C
open cur
fetch next from cur into @id, @parent
while @@fetch_status = 0
begin
exec storedProcedure @[email protected], @[email protected]
fetch next from cur into @id, @parent
end
close cur
deallocate cur
में सभी परिणामों के लिए विशिष्ट संग्रहीत प्रक्रिया चलाना चाहते हैं बनाया है से पुनरावर्ती परिणाम पाने के लिए मैं पहले के बारे में पूछा है समस्या यह है कि CURSOR AS परिणाम के साथ table
नहीं जानता है।
Invalid object name 'C'.