i have a Url table
UrlId Followedby
1 NULL
2 1
3 2
i want to write a sp which take urlid as parameter and return all rows.
GetAllUrls 3
and it will return above rows.
Can above doable without cursor ?
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
Using a recursive CTE it would look like this
https://data.stackexchange.com/stackoverflow/q/119027/