使用工具 Wiresharkarp: To inspect and clear the cache used by the ARP protocol on your computer.curl(MacOS)ifconfig(MacOS or Linux): to inspect the state of your computer’s network interface.route/netstat: To inspect the routes used by your computer.Brows…
分组聚合:
格式:
select 聚合函数1(聚合的列),聚合函数2(聚合的列) from 表名 group by 标识列;
###若想方便分辨聚合后数据可在聚合函数前加上标识列(以标识列进行分组)
常见的聚合函数:
sum(列名):求和函数
avg(列名)…