Initial commit
This commit is contained in:
19
docs/views/VW_EVENTI_STATUSES.md
Normal file
19
docs/views/VW_EVENTI_STATUSES.md
Normal 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
|
||||
```
|
||||
Reference in New Issue
Block a user