SELECT all from a dimension sorted
Pull all forecast versions sorted by lock_date. Show version_id, version_name, lock_date.
| Column | Type | Key |
|---|---|---|
| version_id | INT | PK |
| version_name | TEXT | |
| lock_date | TEXT | |
| horizon_weeks | INT |
Each hint you reveal reduces the XP you can earn. Try the query first.
Single-table SELECT.
ORDER BY lock_date.
Three columns.