数据库表wbs
wbs_id wbs_code parent_wbs_id
0 NRG00870
1 SI 0 (wbs_code_path = NRG00870.SI)
2 SW 0 (wbs_code_path = NRG00870.SW)
3 SI 1 (wbs_code_path = NRG00870.SI.SI)
4 SI 3 (wbs_code_path = NRG00870.SI.SI.SI)
wbs_code 可以重复
假定给定字符串wbs_code全路径,现在要求出其对应的wbs_id,请问该怎么写
如 String wbs_code_path = "NRG00870.SI" 求出其对应的 wbs_id 为 1
wbs_code_path = "NRG00870.SI.SI" 求出其对应的 wbs_id 为 3
wbs_code_path = "NRG00870.SI.SI.SI" 求出其对应的 wbs_id 为 4