Revert "Vue Différentielle"

This reverts commit 712ccb101a.
This commit is contained in:
2025-03-09 18:56:24 +01:00
parent 712ccb101a
commit fa971c2654

View File

@@ -1,2 +0,0 @@
DROP VIEW IF EXISTS chiffres_diff;
CREATE VIEW IF NOT EXISTS chiffres_diff AS SELECT date, code_INSEE, nombre - LAG(nombre) OVER (PARTITION BY code_INSEE ORDER BY date) AS nombre FROM chiffres;