Initial commit

This commit is contained in:
2025-11-28 10:59:10 +01:00
commit 14b3e965d0
540 changed files with 784121 additions and 0 deletions

View File

@@ -0,0 +1,19 @@
# VW_EVENTI_STATUSES
## Colonne
| Colonna | Tipo |
|---------|------|
| STATO | NUMBER |
| COLOR | CHAR(7) |
| COLOR_SLANG | VARCHAR2(7) |
## Definizione
```sql
CREATE OR REPLACE VIEW VW_EVENTI_STATUSES AS
select distinct e.stato, v.color, v.color_slang
from eventi e
join vw_event_color v on v.id = e.id
order by 1
```