
(1, 'Ehota', 'Selemani', 'Isp-Bukavu', 'M', '243999449999', '2006-02-09', 'Kinshasa'),
(2, 'Felicien', 'Mukamba', 'Nguba', 'M', '243993339299', '2004-12-05', 'Bukavu'),
(3, 'Faida', 'Kininga', 'Goma', 'F', '243999999779', '2009-02-09', 'Uvira'),
(4, 'Mubasi', 'Wampoko', 'Place', 'M', '243999999889', '1999-11-01', 'Beni');
INSERT INTO COMPTE (IdCompte, Folio, DateOuverture, TypeCompte, SoldeCompte)
VALUES
(1, 'AD3333', '2025-02-09', 'Epargne', 400000),
(2, 'DA3421', '2026-12-02', 'Epargne', 235000),
(3, 'AA5437', '2024-07-10', 'Epargne', 408000),
(4, 'CF4377', '2023-04-11', 'Epargne', 100000),
(5, 'KP7746', '2024-03-04', 'Epargne', 990000);
INSERT INTO CREDIT (IdCredit, MontantCredit, DateDebut, DateFin, TauxInteret, TypeCredit,
StatutCredit, IdClient, IdUser)
VALUES
(1, 100000, '2024-11-12', '2025-11-12', 2.5, 'Encours', 'Actif', 1, 1),
(2, 20000, '2024-11-15', '2025-11-11', 2.5, 'Expiré', 'Terminé', 1, 2),
(3, 110000, '2025-07-07', '2026-07-07', 2.5, 'Alerte', 'En attente', 2, 1),
(4, 500000, '2025-07-01', '2026-01-17', 2.5, 'Encours', 'Actif', 2, 1),
(5, 480000, '2026-01-01', '2026-01-12', 2.5, 'Encours', 'Actif', 2, 1);