21 lines
473 B
SQL
21 lines
473 B
SQL
-- Mart: School admissions — one row per URN per year
|
|
|
|
select
|
|
urn,
|
|
year,
|
|
school_phase,
|
|
places_offered,
|
|
total_offers,
|
|
total_applications,
|
|
first_preference_applications,
|
|
first_preference_offers,
|
|
second_preference_offers,
|
|
third_preference_offers,
|
|
cross_la_applications,
|
|
cross_la_offers,
|
|
first_preference_offer_pct,
|
|
oversubscription_ratio,
|
|
oversubscribed,
|
|
admissions_policy
|
|
from {{ ref('stg_ees_admissions') }}
|