2024年10月06日
mysql开发中,如何利用LAG()函数和LEAD()函数的使用方法,下面web建站小编给大家简单介绍一下!
利用LAG()函数统计与前一天相比温度更高的日期id
select id, date, temperature, LAG(temperature, 1, 0) OVER (order by date) as temp FROM weather
利用LEAD()函数统计与后一天相比温度更高的日期id
select id, date, temperature, LEA