9 lines
170 B
MySQL
9 lines
170 B
MySQL
|
|
-- Mart: Phonics screening results — one row per URN per year
|
||
|
|
|
||
|
|
select
|
||
|
|
urn,
|
||
|
|
year,
|
||
|
|
year1_phonics_pct,
|
||
|
|
year2_phonics_pct
|
||
|
|
from {{ ref('stg_ees_phonics') }}
|