Hi,

I have the following oracle select stmt:-
--------------------------------------------------------
select tax_region_cd from ref_tax_region
start with tax_region_cd = 'VC_CITY1'
connect by prior parent_tax_region_cd = tax_region_cd
--------------------------------------------------------

How can i convert it into ms-sql server script? Do we have connect by clause in ms-sql? If not then what can be the work around?

thanking you,

Parijat Paul