extracted objects

This commit is contained in:
2025-12-17 13:02:12 +01:00
commit 7dd4ea08e1
195 changed files with 70591 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
```