赞
踩
官方Github:https://github.com/apache/incubator-superset
官方文档:https://superset.incubator.apache.org/installation.html
首先导入数据库
数据库地址格式:数据库类型://用户名:密码@ip/数据库名称
有中文字符的话最后要加上?charset=utf8
勾选在SQL工具箱中公开。
添加数据表
在SQL编辑器可以自己写SQL语句查询已导入的表的数据,支持多表查询
点击查询结果的explore就可以进入图表编辑界面
SELECT DISTINCT 去除重复结果
提取查询出数据的一部分:
substring(字段名,开始索引,字符串长度)
select substring(q_time,1,4)+substring(q_time,6,2)+substring(q_time,9,2) as q_time from table
多表查询示例:
SELECT DISTINCT circuit.id,name,busy_power,substring(time,1,10) as time
FROM circuit,analysis
WHERE circuit.id=analysis.circuit_id
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。