我有4张桌子
区域
Id, RegionName
国家
Id, CountryName, CountryRegion
国家
Id, StateName, StateCountryName
城市
Id, City Name, CityStateName, CityCountryName
我创建了一个存储过程来获取所有这些列,现在我希望这个数据的JSON对象附加到树视图。
树视图应该是这样的:
Region
-Country
--State
---City
如何递归生成此树视图的数据?