fix: refs #6372 Version
gitea/salix/pipeline/head There was a failure building this commit Details

This commit is contained in:
Guillermo Bonet 2024-02-23 14:21:40 +01:00
parent 1b84082e99
commit e971070f2f
1 changed files with 1 additions and 1 deletions

View File

@ -2,7 +2,7 @@ DELETE FROM vn2008.gastos_resumen
WHERE Id_Gasto IN (
SELECT DISTINCT g.Id_Gasto
FROM vn2008.gastos_resumen g
LEFT JOIN expense e ON e.id = g.Id_Gasto COLLATE utf8mb3_general_ci
LEFT JOIN vn.expense e ON e.id = g.Id_Gasto COLLATE utf8mb3_general_ci
WHERE e.id IS NULL
);