Tổng tích lũy sử dụng UDV:
select
dateOfCheckup,
duration,
-- use intermediate variable @cur_dur for not calculate this value twice
@cur_dur := ((case when duration like '% hour%' then substring_index(duration, ' hour', 1) * 60 else 0 end) +
(case when duration like '%min%' then substring_index(substring_index(duration, ' min', 1), ' ', -1) + 0 else 0 end)) as minutes,
-- check does current @year_month is equal to previous, continue or restart @cum_sum
CASE WHEN @year_month = date_format(dateOfCheckup, '%Y-%m')
THEN @cum_sum := @cum_sum + @cur_dur
ELSE @cum_sum := @cur_dur
END total,
-- store current @year_month for to use with next row
@year_month := date_format(dateOfCheckup, '%Y-%m') monthOfCheckup
from patient,
-- initialize variables which will be used
(SELECT @year_month:='', @cum_sum:=0, @cur_dur:=0) variables
-- the rows must be processed in definite order
ORDER BY dateOfCheckup
Thứ tự các cột đầu ra là rất quan trọng (các phép tính trong các cột đầu ra trong một hàng được thực hiện đúng theo thứ tự mà chúng được viết). Nhưng không quan trọng nếu ví dụ này được sử dụng làm truy vấn con hay dữ liệu đầu ra được truy cập bằng tên cột.