12 lines
235 B
MySQL
12 lines
235 B
MySQL
|
|
-- Mart: School financial data — one row per URN per year
|
||
|
|
|
||
|
|
select
|
||
|
|
urn,
|
||
|
|
year,
|
||
|
|
per_pupil_spend,
|
||
|
|
staff_cost_pct,
|
||
|
|
teacher_cost_pct,
|
||
|
|
support_staff_cost_pct,
|
||
|
|
premises_cost_pct
|
||
|
|
from {{ ref('stg_fbit_finance') }}
|