Initial commit
This commit is contained in:
@@ -0,0 +1,36 @@
|
||||
cache+ 第三方互联网业务 共计 512
|
||||
|
||||
其中 集团 5
|
||||
|
||||
优刻得科技股份有限公司 迂姗姗 -22- 集团运营经理
|
||||
|
||||
上海蓝云网络科技有限公司 迂姗姗
|
||||
|
||||
中国电信股份有限公司上海企业信息化运营中心 迂姗姗
|
||||
|
||||
三网域名测试企业 迂姗姗
|
||||
|
||||
央视测试 1 谭茁 -22- 集团运营经理
|
||||
|
||||
(0, " 中国移动自有业务 ")
|
||||
|
||||
(1, " 第三方互联网业务 ")
|
||||
|
||||
(2, " 省内自有业务 ")
|
||||
|
||||
省的更改为中国移动自有业务或者省内自有业务后企业客户可提单
|
||||
|
||||
集团更改为中国移动自有业务或者省内自有业务后企业客户可提单。
|
||||
|
||||
企业信息如果是省的,会不会有集团运营经理。
|
||||
|
||||
```sql
|
||||
select ei.enterprise_name, ei.enter_province,ei.enterprise_type, u.name, r.name
|
||||
from enterprise_info ei
|
||||
left join enterprise_manager_table emt on ei.id = emt.enterprise_info_id
|
||||
left join user u on emt.user_id = u.id
|
||||
left join role r on u.role_id = r.id
|
||||
where ei.source = 'WEB'
|
||||
and ei.enter_province != '集团'
|
||||
order by r.name desc ;
|
||||
```
|
||||
Reference in New Issue
Block a user