Home >Database >Mysql Tutorial >zTree mysql json

zTree mysql json

WBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWB
WBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOriginal
2016-06-07 14:58:131655browse

mysql语句查询返回json格式的数据,匹配zTree的数据接口 无 select c.id as id,c.pId as pId,c.name as name,c.checked as checked,c.type as type from(select a.funtypeid id,0 pId,a.name name,IF((select COUNT(*) from t_role_function f,t_fun_item g w

mysql语句查询返回json格式的数据,匹配zTree的数据接口
select c.id as id,c.pId as pId,c.name as name,c.checked as checked,c.type as type from(
select 
a.funtypeid id,
0 pId,
a.name name,
IF((select COUNT(*) from t_role_function f,t_fun_item g where f.funid = g.funid and g.funtypeid = a.funtypeid AND f.roleid = 'systemuser')>0,'true','false') as checked,
'parent' type
from t_fun_type a
union all
select 
b.funid id,
b.funtypeid pId,
b.funname name,
IF((select COUNT(*) from t_role_function e where e.funid = b.funid AND e.roleid = 'systemuser')>0,'true','false') as checked,
'childern' type
from t_fun_item b
)  c
Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn