This commit is contained in:
2025-09-01 07:56:13 +02:00
parent 41b613f451
commit 68144c3918
10 changed files with 257 additions and 93 deletions

View File

@@ -0,0 +1,11 @@
create view nb_total_familles as
select count(*) as nb_total_familles from famille;
create view nb_total_articles as
select count(*) as nb_total_articles from article;
create view nb_total_tickets as
select count(*) as nb_total_tickets from ticket;
create view nb_total_adherents as
select count(*) as nb_total_adherents from adherent;