需求:
从不同表查询并组合数据,统计各大洲节点数量和位置。
源表:
表1中展示了节点和算力大小;
表2中展示了节点所在位置。
SQL知识点:
- sql中从不同表查询并组合数据
- 查询数量
- 求和数值
sql语句:
select lmc.continent, count(lmc.miner) as minerc, sum(lmls.quality_adj_power)/pow(1024,4) as powers from 表名1 lmls,表名2 lmc where lmc.miner = lmls.actor GROUP BY lmc.continent ORDER by powers desc;
执行结果: