MySQL环比同比实例
时间: 2023-09-04 14:13:01 浏览: 103
假设我们有一个销售数据表,其中包含了每个月的销售额。为了计算MySQL环比同比,我们可以使用以下SQL语句:
环比增长率:
```
SELECT (current_month_sales - last_month_sales) / last_month_sales * 100 AS growth_rate
FROM sales
WHERE month = 'current_month'
```
同比增长率:
```
SELECT (current_month_sales - last_year_same_month_sales) / last_year_same_month_sales * 100 AS growth_rate
FROM sales
WHERE month = 'current_month'
```
其中,`current_month_sales`表示本月销售额,`last_month_sales`表示上个月的销售额,`last_year_same_month_sales`表示去年同月的销售额。通过比较不同时间段的销售额,我们可以计算出MySQL环比同比增长率。
阅读全文