--This SQL script produces a table for the statistic of interest with the defined Get Data Out groups for h_and_n. --Run on CASREF01 --Head and neck tumour cohort --Run on casref01 with tumour_cohort_h_and_n as ( select t.tumourid , t.diagnosisyear , t.site_icd10_o2 , nvl(avte.stage_best_1901,'X') as stage_best , t.age from av2017.av_tumour_england t inner join av2017.av_tumour_experimental_england avte on t.tumourid = avte.tumourid where t.diagnosisyear in ('2013','2014','2015','2016','2017') -- This is head and neck and t.site_icd10_o2_3char in ('C00','C01', 'C02','C03','C04', 'C05', 'C06', 'C07', 'C08', 'C09', 'C10' ,'C11', 'C12', 'C13', 'C14', 'C30','C31', 'C32') --Standard NCRAS cohort filters -- Only finals and t.statusofregistration = 'F' -- Only English and t.ctry_code = 'E' -- Only known sex, no sex = 9 and t.sex in ('1','2') -- Not duplicates: and t.dedup_flag = 1 and t.age between 0 and 200 -- Sensible age ) , statisticofinterest_h_and_n as (select tumourid, 1 as statisticofinterest_h_and_n from tumour_cohort_h_and_n), tumour_cohort_linked_h_and_n AS ( SELECT * FROM tumour_cohort_h_and_n tc_h_and_n LEFT JOIN statisticofinterest_h_and_n ON statisticofinterest_h_and_n.tumourid = tc_h_and_n.tumourid LEFT JOIN ANALYSISCHARLOTTEEVERSFIELD.stages stages ON stages.STAGE_BEST = tc_h_and_n.STAGE_BEST LEFT JOIN ANALYSISCHARLOTTEEVERSFIELD.ages ages ON ages.AGE = tc_h_and_n.AGE LEFT JOIN ANALYSISCHARLOTTEEVERSFIELD.GDO_HEAD_AND_NECK_site site ON site.SITE_ICD10_O2 = tc_h_and_n.SITE_ICD10_O2) , extractpartition_h_and_n as ( SELECT '2013' AS "Year", 'All' AS "Tumour Type", 'All' AS "Age", 'All' AS "stages.MASTER", SUM(statisticofinterest_h_and_n) as statistic_of_interest FROM tumour_cohort_linked_h_and_n WHERE DIAGNOSISYEAR = '2013' UNION ALL SELECT '2013' AS "Year", 'External lip' AS "Tumour Type", 'All' AS "Age", 'All' AS "stages.MASTER", SUM(statisticofinterest_h_and_n) as statistic_of_interest FROM tumour_cohort_linked_h_and_n WHERE DIAGNOSISYEAR = '2013' AND SITE = 'External lip' UNION ALL SELECT '2013' AS "Year", 'Hypopharynx including piriform sinus' AS "Tumour Type", 'All' AS "Age", 'All' AS "stages.MASTER", SUM(statisticofinterest_h_and_n) as statistic_of_interest FROM tumour_cohort_linked_h_and_n WHERE DIAGNOSISYEAR = '2013' AND SITE = 'Hypopharynx including piriform sinus' UNION ALL SELECT '2013' AS "Year", 'Hypopharynx including piriform sinus' AS "Tumour Type", 'Age 00-59' AS "Age", 'All' AS "stages.MASTER", SUM(statisticofinterest_h_and_n) as statistic_of_interest FROM tumour_cohort_linked_h_and_n WHERE DIAGNOSISYEAR = '2013' AND SITE = 'Hypopharynx including piriform sinus' AND SPLIT_60_70 = 'Age 00-59' UNION ALL SELECT '2013' AS "Year", 'Hypopharynx including piriform sinus' AS "Tumour Type", 'Age 60-69' AS "Age", 'All' AS "stages.MASTER", SUM(statisticofinterest_h_and_n) as statistic_of_interest FROM tumour_cohort_linked_h_and_n WHERE DIAGNOSISYEAR = '2013' AND SITE = 'Hypopharynx including piriform sinus' AND SPLIT_60_70 = 'Age 60-69' UNION ALL SELECT '2013' AS "Year", 'Hypopharynx including piriform sinus' AS "Tumour Type", 'Age 70+' AS "Age", 'All' AS "stages.MASTER", SUM(statisticofinterest_h_and_n) as statistic_of_interest FROM tumour_cohort_linked_h_and_n WHERE DIAGNOSISYEAR = '2013' AND SITE = 'Hypopharynx including piriform sinus' AND SPLIT_60_70 = 'Age 70+' UNION ALL SELECT '2013' AS "Year", 'Larynx including anterior surface of epiglottis' AS "Tumour Type", 'All' AS "Age", 'All' AS "stages.MASTER", SUM(statisticofinterest_h_and_n) as statistic_of_interest FROM tumour_cohort_linked_h_and_n WHERE DIAGNOSISYEAR = '2013' AND SITE = 'Larynx including anterior surface of epiglottis' UNION ALL SELECT '2013' AS "Year", 'Larynx including anterior surface of epiglottis' AS "Tumour Type", 'All' AS "Age", 'Stage 1' AS "stages.MASTER", SUM(statisticofinterest_h_and_n) as statistic_of_interest FROM tumour_cohort_linked_h_and_n WHERE DIAGNOSISYEAR = '2013' AND SITE = 'Larynx including anterior surface of epiglottis' AND STAGE_1234X = 'Stage 1' UNION ALL SELECT '2013' AS "Year", 'Larynx including anterior surface of epiglottis' AS "Tumour Type", 'Age 00-59' AS "Age", 'Stage 1' AS "stages.MASTER", SUM(statisticofinterest_h_and_n) as statistic_of_interest FROM tumour_cohort_linked_h_and_n WHERE DIAGNOSISYEAR = '2013' AND SITE = 'Larynx including anterior surface of epiglottis' AND STAGE_1234X = 'Stage 1' AND SPLIT_60_70 = 'Age 00-59' UNION ALL SELECT '2013' AS "Year", 'Larynx including anterior surface of epiglottis' AS "Tumour Type", 'Age 60-69' AS "Age", 'Stage 1' AS "stages.MASTER", SUM(statisticofinterest_h_and_n) as statistic_of_interest FROM tumour_cohort_linked_h_and_n WHERE DIAGNOSISYEAR = '2013' AND SITE = 'Larynx including anterior surface of epiglottis' AND STAGE_1234X = 'Stage 1' AND SPLIT_60_70 = 'Age 60-69' UNION ALL SELECT '2013' AS "Year", 'Larynx including anterior surface of epiglottis' AS "Tumour Type", 'Age 70+' AS "Age", 'Stage 1' AS "stages.MASTER", SUM(statisticofinterest_h_and_n) as statistic_of_interest FROM tumour_cohort_linked_h_and_n WHERE DIAGNOSISYEAR = '2013' AND SITE = 'Larynx including anterior surface of epiglottis' AND STAGE_1234X = 'Stage 1' AND SPLIT_60_70 = 'Age 70+' UNION ALL SELECT '2013' AS "Year", 'Larynx including anterior surface of epiglottis' AS "Tumour Type", 'All' AS "Age", 'Stage 2' AS "stages.MASTER", SUM(statisticofinterest_h_and_n) as statistic_of_interest FROM tumour_cohort_linked_h_and_n WHERE DIAGNOSISYEAR = '2013' AND SITE = 'Larynx including anterior surface of epiglottis' AND STAGE_1234X = 'Stage 2' UNION ALL SELECT '2013' AS "Year", 'Larynx including anterior surface of epiglottis' AS "Tumour Type", 'Age 00-59' AS "Age", 'Stage 2' AS "stages.MASTER", SUM(statisticofinterest_h_and_n) as statistic_of_interest FROM tumour_cohort_linked_h_and_n WHERE DIAGNOSISYEAR = '2013' AND SITE = 'Larynx including anterior surface of epiglottis' AND STAGE_1234X = 'Stage 2' AND SPLIT_60_70 = 'Age 00-59' UNION ALL SELECT '2013' AS "Year", 'Larynx including anterior surface of epiglottis' AS "Tumour Type", 'Age 60-69' AS "Age", 'Stage 2' AS "stages.MASTER", SUM(statisticofinterest_h_and_n) as statistic_of_interest FROM tumour_cohort_linked_h_and_n WHERE DIAGNOSISYEAR = '2013' AND SITE = 'Larynx including anterior surface of epiglottis' AND STAGE_1234X = 'Stage 2' AND SPLIT_60_70 = 'Age 60-69' UNION ALL SELECT '2013' AS "Year", 'Larynx including anterior surface of epiglottis' AS "Tumour Type", 'Age 70+' AS "Age", 'Stage 2' AS "stages.MASTER", SUM(statisticofinterest_h_and_n) as statistic_of_interest FROM tumour_cohort_linked_h_and_n WHERE DIAGNOSISYEAR = '2013' AND SITE = 'Larynx including anterior surface of epiglottis' AND STAGE_1234X = 'Stage 2' AND SPLIT_60_70 = 'Age 70+' UNION ALL SELECT '2013' AS "Year", 'Larynx including anterior surface of epiglottis' AS "Tumour Type", 'All' AS "Age", 'Stage 3' AS "stages.MASTER", SUM(statisticofinterest_h_and_n) as statistic_of_interest FROM tumour_cohort_linked_h_and_n WHERE DIAGNOSISYEAR = '2013' AND SITE = 'Larynx including anterior surface of epiglottis' AND STAGE_1234X = 'Stage 3' UNION ALL SELECT '2013' AS "Year", 'Larynx including anterior surface of epiglottis' AS "Tumour Type", 'Age 00-59' AS "Age", 'Stage 3' AS "stages.MASTER", SUM(statisticofinterest_h_and_n) as statistic_of_interest FROM tumour_cohort_linked_h_and_n WHERE DIAGNOSISYEAR = '2013' AND SITE = 'Larynx including anterior surface of epiglottis' AND STAGE_1234X = 'Stage 3' AND SPLIT_60_70 = 'Age 00-59' UNION ALL SELECT '2013' AS "Year", 'Larynx including anterior surface of epiglottis' AS "Tumour Type", 'Age 60-69' AS "Age", 'Stage 3' AS "stages.MASTER", SUM(statisticofinterest_h_and_n) as statistic_of_interest FROM tumour_cohort_linked_h_and_n WHERE DIAGNOSISYEAR = '2013' AND SITE = 'Larynx including anterior surface of epiglottis' AND STAGE_1234X = 'Stage 3' AND SPLIT_60_70 = 'Age 60-69' UNION ALL SELECT '2013' AS "Year", 'Larynx including anterior surface of epiglottis' AS "Tumour Type", 'Age 70+' AS "Age", 'Stage 3' AS "stages.MASTER", SUM(statisticofinterest_h_and_n) as statistic_of_interest FROM tumour_cohort_linked_h_and_n WHERE DIAGNOSISYEAR = '2013' AND SITE = 'Larynx including anterior surface of epiglottis' AND STAGE_1234X = 'Stage 3' AND SPLIT_60_70 = 'Age 70+' UNION ALL SELECT '2013' AS "Year", 'Larynx including anterior surface of epiglottis' AS "Tumour Type", 'All' AS "Age", 'Stage 4' AS "stages.MASTER", SUM(statisticofinterest_h_and_n) as statistic_of_interest FROM tumour_cohort_linked_h_and_n WHERE DIAGNOSISYEAR = '2013' AND SITE = 'Larynx including anterior surface of epiglottis' AND STAGE_1234X = 'Stage 4' UNION ALL SELECT '2013' AS "Year", 'Larynx including anterior surface of epiglottis' AS "Tumour Type", 'Age 00-59' AS "Age", 'Stage 4' AS "stages.MASTER", SUM(statisticofinterest_h_and_n) as statistic_of_interest FROM tumour_cohort_linked_h_and_n WHERE DIAGNOSISYEAR = '2013' AND SITE = 'Larynx including anterior surface of epiglottis' AND STAGE_1234X = 'Stage 4' AND SPLIT_60_70 = 'Age 00-59' UNION ALL SELECT '2013' AS "Year", 'Larynx including anterior surface of epiglottis' AS "Tumour Type", 'Age 60-69' AS "Age", 'Stage 4' AS "stages.MASTER", SUM(statisticofinterest_h_and_n) as statistic_of_interest FROM tumour_cohort_linked_h_and_n WHERE DIAGNOSISYEAR = '2013' AND SITE = 'Larynx including anterior surface of epiglottis' AND STAGE_1234X = 'Stage 4' AND SPLIT_60_70 = 'Age 60-69' UNION ALL SELECT '2013' AS "Year", 'Larynx including anterior surface of epiglottis' AS "Tumour Type", 'Age 70+' AS "Age", 'Stage 4' AS "stages.MASTER", SUM(statisticofinterest_h_and_n) as statistic_of_interest FROM tumour_cohort_linked_h_and_n WHERE DIAGNOSISYEAR = '2013' AND SITE = 'Larynx including anterior surface of epiglottis' AND STAGE_1234X = 'Stage 4' AND SPLIT_60_70 = 'Age 70+' UNION ALL SELECT '2013' AS "Year", 'Larynx including anterior surface of epiglottis' AS "Tumour Type", 'All' AS "Age", 'Stage unknown' AS "stages.MASTER", SUM(statisticofinterest_h_and_n) as statistic_of_interest FROM tumour_cohort_linked_h_and_n WHERE DIAGNOSISYEAR = '2013' AND SITE = 'Larynx including anterior surface of epiglottis' AND STAGE_1234X = 'Stage unknown' UNION ALL SELECT '2013' AS "Year", 'Larynx including anterior surface of epiglottis' AS "Tumour Type", 'Age 00-69' AS "Age", 'Stage unknown' AS "stages.MASTER", SUM(statisticofinterest_h_and_n) as statistic_of_interest FROM tumour_cohort_linked_h_and_n WHERE DIAGNOSISYEAR = '2013' AND SITE = 'Larynx including anterior surface of epiglottis' AND STAGE_1234X = 'Stage unknown' AND SPLIT_70 = 'Age 00-69' UNION ALL SELECT '2013' AS "Year", 'Larynx including anterior surface of epiglottis' AS "Tumour Type", 'Age 70+' AS "Age", 'Stage unknown' AS "stages.MASTER", SUM(statisticofinterest_h_and_n) as statistic_of_interest FROM tumour_cohort_linked_h_and_n WHERE DIAGNOSISYEAR = '2013' AND SITE = 'Larynx including anterior surface of epiglottis' AND STAGE_1234X = 'Stage unknown' AND SPLIT_70 = 'Age 70+' UNION ALL SELECT '2013' AS "Year", 'Major salivary glands' AS "Tumour Type", 'All' AS "Age", 'All' AS "stages.MASTER", SUM(statisticofinterest_h_and_n) as statistic_of_interest FROM tumour_cohort_linked_h_and_n WHERE DIAGNOSISYEAR = '2013' AND SITE = 'Major salivary glands' UNION ALL SELECT '2013' AS "Year", 'Major salivary glands' AS "Tumour Type", 'All' AS "Age", 'Stage 1-3' AS "stages.MASTER", SUM(statisticofinterest_h_and_n) as statistic_of_interest FROM tumour_cohort_linked_h_and_n WHERE DIAGNOSISYEAR = '2013' AND SITE = 'Major salivary glands' AND STAGE_SPLIT13 = 'Stage 1-3' UNION ALL SELECT '2013' AS "Year", 'Major salivary glands' AS "Tumour Type", 'All' AS "Age", 'Stage 4' AS "stages.MASTER", SUM(statisticofinterest_h_and_n) as statistic_of_interest FROM tumour_cohort_linked_h_and_n WHERE DIAGNOSISYEAR = '2013' AND SITE = 'Major salivary glands' AND STAGE_SPLIT13 = 'Stage 4' UNION ALL SELECT '2013' AS "Year", 'Major salivary glands' AS "Tumour Type", 'All' AS "Age", 'Stage unknown' AS "stages.MASTER", SUM(statisticofinterest_h_and_n) as statistic_of_interest FROM tumour_cohort_linked_h_and_n WHERE DIAGNOSISYEAR = '2013' AND SITE = 'Major salivary glands' AND STAGE_SPLIT13 = 'Stage unknown' UNION ALL SELECT '2013' AS "Year", 'Middle ear' AS "Tumour Type", 'All' AS "Age", 'All' AS "stages.MASTER", SUM(statisticofinterest_h_and_n) as statistic_of_interest FROM tumour_cohort_linked_h_and_n WHERE DIAGNOSISYEAR = '2013' AND SITE = 'Middle ear' UNION ALL SELECT '2013' AS "Year", 'Nasal cavity and sinus' AS "Tumour Type", 'All' AS "Age", 'All' AS "stages.MASTER", SUM(statisticofinterest_h_and_n) as statistic_of_interest FROM tumour_cohort_linked_h_and_n WHERE DIAGNOSISYEAR = '2013' AND SITE = 'Nasal cavity and sinus' UNION ALL SELECT '2013' AS "Year", 'Nasal cavity and sinus' AS "Tumour Type", 'All' AS "Age", 'Stage 1-2' AS "stages.MASTER", SUM(statisticofinterest_h_and_n) as statistic_of_interest FROM tumour_cohort_linked_h_and_n WHERE DIAGNOSISYEAR = '2013' AND SITE = 'Nasal cavity and sinus' AND STAGE_SPLIT2 = 'Stage 1-2' UNION ALL SELECT '2013' AS "Year", 'Nasal cavity and sinus' AS "Tumour Type", 'All' AS "Age", 'Stage 3-4' AS "stages.MASTER", SUM(statisticofinterest_h_and_n) as statistic_of_interest FROM tumour_cohort_linked_h_and_n WHERE DIAGNOSISYEAR = '2013' AND SITE = 'Nasal cavity and sinus' AND STAGE_SPLIT2 = 'Stage 3-4' UNION ALL SELECT '2013' AS "Year", 'Nasal cavity and sinus' AS "Tumour Type", 'All' AS "Age", 'Stage unknown' AS "stages.MASTER", SUM(statisticofinterest_h_and_n) as statistic_of_interest FROM tumour_cohort_linked_h_and_n WHERE DIAGNOSISYEAR = '2013' AND SITE = 'Nasal cavity and sinus' AND STAGE_SPLIT2 = 'Stage unknown' UNION ALL SELECT '2013' AS "Year", 'Nasopharynx' AS "Tumour Type", 'All' AS "Age", 'All' AS "stages.MASTER", SUM(statisticofinterest_h_and_n) as statistic_of_interest FROM tumour_cohort_linked_h_and_n WHERE DIAGNOSISYEAR = '2013' AND SITE = 'Nasopharynx' UNION ALL SELECT '2013' AS "Year", 'Oral cavity' AS "Tumour Type", 'All' AS "Age", 'All' AS "stages.MASTER", SUM(statisticofinterest_h_and_n) as statistic_of_interest FROM tumour_cohort_linked_h_and_n WHERE DIAGNOSISYEAR = '2013' AND SITE = 'Oral cavity' UNION ALL SELECT '2013' AS "Year", 'Oral cavity' AS "Tumour Type", 'All' AS "Age", 'Stage 1' AS "stages.MASTER", SUM(statisticofinterest_h_and_n) as statistic_of_interest FROM tumour_cohort_linked_h_and_n WHERE DIAGNOSISYEAR = '2013' AND SITE = 'Oral cavity' AND STAGE_1234X = 'Stage 1' UNION ALL SELECT '2013' AS "Year", 'Oral cavity' AS "Tumour Type", 'Age 00-59' AS "Age", 'Stage 1' AS "stages.MASTER", SUM(statisticofinterest_h_and_n) as statistic_of_interest FROM tumour_cohort_linked_h_and_n WHERE DIAGNOSISYEAR = '2013' AND SITE = 'Oral cavity' AND STAGE_1234X = 'Stage 1' AND SPLIT_60_70 = 'Age 00-59' UNION ALL SELECT '2013' AS "Year", 'Oral cavity' AS "Tumour Type", 'Age 60-69' AS "Age", 'Stage 1' AS "stages.MASTER", SUM(statisticofinterest_h_and_n) as statistic_of_interest FROM tumour_cohort_linked_h_and_n WHERE DIAGNOSISYEAR = '2013' AND SITE = 'Oral cavity' AND STAGE_1234X = 'Stage 1' AND SPLIT_60_70 = 'Age 60-69' UNION ALL SELECT '2013' AS "Year", 'Oral cavity' AS "Tumour Type", 'Age 70+' AS "Age", 'Stage 1' AS "stages.MASTER", SUM(statisticofinterest_h_and_n) as statistic_of_interest FROM tumour_cohort_linked_h_and_n WHERE DIAGNOSISYEAR = '2013' AND SITE = 'Oral cavity' AND STAGE_1234X = 'Stage 1' AND SPLIT_60_70 = 'Age 70+' UNION ALL SELECT '2013' AS "Year", 'Oral cavity' AS "Tumour Type", 'All' AS "Age", 'Stage 2' AS "stages.MASTER", SUM(statisticofinterest_h_and_n) as statistic_of_interest FROM tumour_cohort_linked_h_and_n WHERE DIAGNOSISYEAR = '2013' AND SITE = 'Oral cavity' AND STAGE_1234X = 'Stage 2' UNION ALL SELECT '2013' AS "Year", 'Oral cavity' AS "Tumour Type", 'Age 00-59' AS "Age", 'Stage 2' AS "stages.MASTER", SUM(statisticofinterest_h_and_n) as statistic_of_interest FROM tumour_cohort_linked_h_and_n WHERE DIAGNOSISYEAR = '2013' AND SITE = 'Oral cavity' AND STAGE_1234X = 'Stage 2' AND SPLIT_60_70 = 'Age 00-59' UNION ALL SELECT '2013' AS "Year", 'Oral cavity' AS "Tumour Type", 'Age 60-69' AS "Age", 'Stage 2' AS "stages.MASTER", SUM(statisticofinterest_h_and_n) as statistic_of_interest FROM tumour_cohort_linked_h_and_n WHERE DIAGNOSISYEAR = '2013' AND SITE = 'Oral cavity' AND STAGE_1234X = 'Stage 2' AND SPLIT_60_70 = 'Age 60-69' UNION ALL SELECT '2013' AS "Year", 'Oral cavity' AS "Tumour Type", 'Age 70+' AS "Age", 'Stage 2' AS "stages.MASTER", SUM(statisticofinterest_h_and_n) as statistic_of_interest FROM tumour_cohort_linked_h_and_n WHERE DIAGNOSISYEAR = '2013' AND SITE = 'Oral cavity' AND STAGE_1234X = 'Stage 2' AND SPLIT_60_70 = 'Age 70+' UNION ALL SELECT '2013' AS "Year", 'Oral cavity' AS "Tumour Type", 'All' AS "Age", 'Stage 3' AS "stages.MASTER", SUM(statisticofinterest_h_and_n) as statistic_of_interest FROM tumour_cohort_linked_h_and_n WHERE DIAGNOSISYEAR = '2013' AND SITE = 'Oral cavity' AND STAGE_1234X = 'Stage 3' UNION ALL SELECT '2013' AS "Year", 'Oral cavity' AS "Tumour Type", 'All' AS "Age", 'Stage 4' AS "stages.MASTER", SUM(statisticofinterest_h_and_n) as statistic_of_interest FROM tumour_cohort_linked_h_and_n WHERE DIAGNOSISYEAR = '2013' AND SITE = 'Oral cavity' AND STAGE_1234X = 'Stage 4' UNION ALL SELECT '2013' AS "Year", 'Oral cavity' AS "Tumour Type", 'Age 00-59' AS "Age", 'Stage 4' AS "stages.MASTER", SUM(statisticofinterest_h_and_n) as statistic_of_interest FROM tumour_cohort_linked_h_and_n WHERE DIAGNOSISYEAR = '2013' AND SITE = 'Oral cavity' AND STAGE_1234X = 'Stage 4' AND SPLIT_60_70 = 'Age 00-59' UNION ALL SELECT '2013' AS "Year", 'Oral cavity' AS "Tumour Type", 'Age 60-69' AS "Age", 'Stage 4' AS "stages.MASTER", SUM(statisticofinterest_h_and_n) as statistic_of_interest FROM tumour_cohort_linked_h_and_n WHERE DIAGNOSISYEAR = '2013' AND SITE = 'Oral cavity' AND STAGE_1234X = 'Stage 4' AND SPLIT_60_70 = 'Age 60-69' UNION ALL SELECT '2013' AS "Year", 'Oral cavity' AS "Tumour Type", 'Age 70+' AS "Age", 'Stage 4' AS "stages.MASTER", SUM(statisticofinterest_h_and_n) as statistic_of_interest FROM tumour_cohort_linked_h_and_n WHERE DIAGNOSISYEAR = '2013' AND SITE = 'Oral cavity' AND STAGE_1234X = 'Stage 4' AND SPLIT_60_70 = 'Age 70+' UNION ALL SELECT '2013' AS "Year", 'Oral cavity' AS "Tumour Type", 'All' AS "Age", 'Stage unknown' AS "stages.MASTER", SUM(statisticofinterest_h_and_n) as statistic_of_interest FROM tumour_cohort_linked_h_and_n WHERE DIAGNOSISYEAR = '2013' AND SITE = 'Oral cavity' AND STAGE_1234X = 'Stage unknown' UNION ALL SELECT '2013' AS "Year", 'Oral cavity' AS "Tumour Type", 'Age 00-69' AS "Age", 'Stage unknown' AS "stages.MASTER", SUM(statisticofinterest_h_and_n) as statistic_of_interest FROM tumour_cohort_linked_h_and_n WHERE DIAGNOSISYEAR = '2013' AND SITE = 'Oral cavity' AND STAGE_1234X = 'Stage unknown' AND SPLIT_70 = 'Age 00-69' UNION ALL SELECT '2013' AS "Year", 'Oral cavity' AS "Tumour Type", 'Age 70+' AS "Age", 'Stage unknown' AS "stages.MASTER", SUM(statisticofinterest_h_and_n) as statistic_of_interest FROM tumour_cohort_linked_h_and_n WHERE DIAGNOSISYEAR = '2013' AND SITE = 'Oral cavity' AND STAGE_1234X = 'Stage unknown' AND SPLIT_70 = 'Age 70+' UNION ALL SELECT '2013' AS "Year", 'Oropharynx including base of tongue, soft palate and tonsils' AS "Tumour Type", 'All' AS "Age", 'All' AS "stages.MASTER", SUM(statisticofinterest_h_and_n) as statistic_of_interest FROM tumour_cohort_linked_h_and_n WHERE DIAGNOSISYEAR = '2013' AND SITE = 'Oropharynx including base of tongue, soft palate and tonsils' UNION ALL SELECT '2013' AS "Year", 'Oropharynx including base of tongue, soft palate and tonsils' AS "Tumour Type", 'All' AS "Age", 'Stage 1' AS "stages.MASTER", SUM(statisticofinterest_h_and_n) as statistic_of_interest FROM tumour_cohort_linked_h_and_n WHERE DIAGNOSISYEAR = '2013' AND SITE = 'Oropharynx including base of tongue, soft palate and tonsils' AND STAGE_1234X = 'Stage 1' UNION ALL SELECT '2013' AS "Year", 'Oropharynx including base of tongue, soft palate and tonsils' AS "Tumour Type", 'All' AS "Age", 'Stage 2' AS "stages.MASTER", SUM(statisticofinterest_h_and_n) as statistic_of_interest FROM tumour_cohort_linked_h_and_n WHERE DIAGNOSISYEAR = '2013' AND SITE = 'Oropharynx including base of tongue, soft palate and tonsils' AND STAGE_1234X = 'Stage 2' UNION ALL SELECT '2013' AS "Year", 'Oropharynx including base of tongue, soft palate and tonsils' AS "Tumour Type", 'All' AS "Age", 'Stage 3' AS "stages.MASTER", SUM(statisticofinterest_h_and_n) as statistic_of_interest FROM tumour_cohort_linked_h_and_n WHERE DIAGNOSISYEAR = '2013' AND SITE = 'Oropharynx including base of tongue, soft palate and tonsils' AND STAGE_1234X = 'Stage 3' UNION ALL SELECT '2013' AS "Year", 'Oropharynx including base of tongue, soft palate and tonsils' AS "Tumour Type", 'Age 00-59' AS "Age", 'Stage 3' AS "stages.MASTER", SUM(statisticofinterest_h_and_n) as statistic_of_interest FROM tumour_cohort_linked_h_and_n WHERE DIAGNOSISYEAR = '2013' AND SITE = 'Oropharynx including base of tongue, soft palate and tonsils' AND STAGE_1234X = 'Stage 3' AND SPLIT_60 = 'Age 00-59' UNION ALL SELECT '2013' AS "Year", 'Oropharynx including base of tongue, soft palate and tonsils' AS "Tumour Type", 'Age 60+' AS "Age", 'Stage 3' AS "stages.MASTER", SUM(statisticofinterest_h_and_n) as statistic_of_interest FROM tumour_cohort_linked_h_and_n WHERE DIAGNOSISYEAR = '2013' AND SITE = 'Oropharynx including base of tongue, soft palate and tonsils' AND STAGE_1234X = 'Stage 3' AND SPLIT_60 = 'Age 60+' UNION ALL SELECT '2013' AS "Year", 'Oropharynx including base of tongue, soft palate and tonsils' AS "Tumour Type", 'All' AS "Age", 'Stage 4' AS "stages.MASTER", SUM(statisticofinterest_h_and_n) as statistic_of_interest FROM tumour_cohort_linked_h_and_n WHERE DIAGNOSISYEAR = '2013' AND SITE = 'Oropharynx including base of tongue, soft palate and tonsils' AND STAGE_1234X = 'Stage 4' UNION ALL SELECT '2013' AS "Year", 'Oropharynx including base of tongue, soft palate and tonsils' AS "Tumour Type", 'Age 00-49' AS "Age", 'Stage 4' AS "stages.MASTER", SUM(statisticofinterest_h_and_n) as statistic_of_interest FROM tumour_cohort_linked_h_and_n WHERE DIAGNOSISYEAR = '2013' AND SITE = 'Oropharynx including base of tongue, soft palate and tonsils' AND STAGE_1234X = 'Stage 4' AND SPLIT_50_TO_70 = 'Age 00-49' UNION ALL SELECT '2013' AS "Year", 'Oropharynx including base of tongue, soft palate and tonsils' AS "Tumour Type", 'Age 50-59' AS "Age", 'Stage 4' AS "stages.MASTER", SUM(statisticofinterest_h_and_n) as statistic_of_interest FROM tumour_cohort_linked_h_and_n WHERE DIAGNOSISYEAR = '2013' AND SITE = 'Oropharynx including base of tongue, soft palate and tonsils' AND STAGE_1234X = 'Stage 4' AND SPLIT_50_TO_70 = 'Age 50-59' UNION ALL SELECT '2013' AS "Year", 'Oropharynx including base of tongue, soft palate and tonsils' AS "Tumour Type", 'Age 60-69' AS "Age", 'Stage 4' AS "stages.MASTER", SUM(statisticofinterest_h_and_n) as statistic_of_interest FROM tumour_cohort_linked_h_and_n WHERE DIAGNOSISYEAR = '2013' AND SITE = 'Oropharynx including base of tongue, soft palate and tonsils' AND STAGE_1234X = 'Stage 4' AND SPLIT_50_TO_70 = 'Age 60-69' UNION ALL SELECT '2013' AS "Year", 'Oropharynx including base of tongue, soft palate and tonsils' AS "Tumour Type", 'Age 70+' AS "Age", 'Stage 4' AS "stages.MASTER", SUM(statisticofinterest_h_and_n) as statistic_of_interest FROM tumour_cohort_linked_h_and_n WHERE DIAGNOSISYEAR = '2013' AND SITE = 'Oropharynx including base of tongue, soft palate and tonsils' AND STAGE_1234X = 'Stage 4' AND SPLIT_50_TO_70 = 'Age 70+' UNION ALL SELECT '2013' AS "Year", 'Oropharynx including base of tongue, soft palate and tonsils' AS "Tumour Type", 'All' AS "Age", 'Stage unknown' AS "stages.MASTER", SUM(statisticofinterest_h_and_n) as statistic_of_interest FROM tumour_cohort_linked_h_and_n WHERE DIAGNOSISYEAR = '2013' AND SITE = 'Oropharynx including base of tongue, soft palate and tonsils' AND STAGE_1234X = 'Stage unknown' UNION ALL SELECT '2013' AS "Year", 'Oropharynx including base of tongue, soft palate and tonsils' AS "Tumour Type", 'Age 00-69' AS "Age", 'Stage unknown' AS "stages.MASTER", SUM(statisticofinterest_h_and_n) as statistic_of_interest FROM tumour_cohort_linked_h_and_n WHERE DIAGNOSISYEAR = '2013' AND SITE = 'Oropharynx including base of tongue, soft palate and tonsils' AND STAGE_1234X = 'Stage unknown' AND SPLIT_70 = 'Age 00-69' UNION ALL SELECT '2013' AS "Year", 'Oropharynx including base of tongue, soft palate and tonsils' AS "Tumour Type", 'Age 70+' AS "Age", 'Stage unknown' AS "stages.MASTER", SUM(statisticofinterest_h_and_n) as statistic_of_interest FROM tumour_cohort_linked_h_and_n WHERE DIAGNOSISYEAR = '2013' AND SITE = 'Oropharynx including base of tongue, soft palate and tonsils' AND STAGE_1234X = 'Stage unknown' AND SPLIT_70 = 'Age 70+' UNION ALL SELECT '2013' AS "Year", 'Other and ill-defined sites in the lip, oral cavity and pharynx' AS "Tumour Type", 'All' AS "Age", 'All' AS "stages.MASTER", SUM(statisticofinterest_h_and_n) as statistic_of_interest FROM tumour_cohort_linked_h_and_n WHERE DIAGNOSISYEAR = '2013' AND SITE = 'Other and ill-defined sites in the lip, oral cavity and pharynx' UNION ALL SELECT '2014' AS "Year", 'All' AS "Tumour Type", 'All' AS "Age", 'All' AS "stages.MASTER", SUM(statisticofinterest_h_and_n) as statistic_of_interest FROM tumour_cohort_linked_h_and_n WHERE DIAGNOSISYEAR = '2014' UNION ALL SELECT '2014' AS "Year", 'External lip' AS "Tumour Type", 'All' AS "Age", 'All' AS "stages.MASTER", SUM(statisticofinterest_h_and_n) as statistic_of_interest FROM tumour_cohort_linked_h_and_n WHERE DIAGNOSISYEAR = '2014' AND SITE = 'External lip' UNION ALL SELECT '2014' AS "Year", 'Hypopharynx including piriform sinus' AS "Tumour Type", 'All' AS "Age", 'All' AS "stages.MASTER", SUM(statisticofinterest_h_and_n) as statistic_of_interest FROM tumour_cohort_linked_h_and_n WHERE DIAGNOSISYEAR = '2014' AND SITE = 'Hypopharynx including piriform sinus' UNION ALL SELECT '2014' AS "Year", 'Hypopharynx including piriform sinus' AS "Tumour Type", 'Age 00-59' AS "Age", 'All' AS "stages.MASTER", SUM(statisticofinterest_h_and_n) as statistic_of_interest FROM tumour_cohort_linked_h_and_n WHERE DIAGNOSISYEAR = '2014' AND SITE = 'Hypopharynx including piriform sinus' AND SPLIT_60_70 = 'Age 00-59' UNION ALL SELECT '2014' AS "Year", 'Hypopharynx including piriform sinus' AS "Tumour Type", 'Age 60-69' AS "Age", 'All' AS "stages.MASTER", SUM(statisticofinterest_h_and_n) as statistic_of_interest FROM tumour_cohort_linked_h_and_n WHERE DIAGNOSISYEAR = '2014' AND SITE = 'Hypopharynx including piriform sinus' AND SPLIT_60_70 = 'Age 60-69' UNION ALL SELECT '2014' AS "Year", 'Hypopharynx including piriform sinus' AS "Tumour Type", 'Age 70+' AS "Age", 'All' AS "stages.MASTER", SUM(statisticofinterest_h_and_n) as statistic_of_interest FROM tumour_cohort_linked_h_and_n WHERE DIAGNOSISYEAR = '2014' AND SITE = 'Hypopharynx including piriform sinus' AND SPLIT_60_70 = 'Age 70+' UNION ALL SELECT '2014' AS "Year", 'Larynx including anterior surface of epiglottis' AS "Tumour Type", 'All' AS "Age", 'All' AS "stages.MASTER", SUM(statisticofinterest_h_and_n) as statistic_of_interest FROM tumour_cohort_linked_h_and_n WHERE DIAGNOSISYEAR = '2014' AND SITE = 'Larynx including anterior surface of epiglottis' UNION ALL SELECT '2014' AS "Year", 'Larynx including anterior surface of epiglottis' AS "Tumour Type", 'All' AS "Age", 'Stage 1' AS "stages.MASTER", SUM(statisticofinterest_h_and_n) as statistic_of_interest FROM tumour_cohort_linked_h_and_n WHERE DIAGNOSISYEAR = '2014' AND SITE = 'Larynx including anterior surface of epiglottis' AND STAGE_1234X = 'Stage 1' UNION ALL SELECT '2014' AS "Year", 'Larynx including anterior surface of epiglottis' AS "Tumour Type", 'Age 00-59' AS "Age", 'Stage 1' AS "stages.MASTER", SUM(statisticofinterest_h_and_n) as statistic_of_interest FROM tumour_cohort_linked_h_and_n WHERE DIAGNOSISYEAR = '2014' AND SITE = 'Larynx including anterior surface of epiglottis' AND STAGE_1234X = 'Stage 1' AND SPLIT_60_70 = 'Age 00-59' UNION ALL SELECT '2014' AS "Year", 'Larynx including anterior surface of epiglottis' AS "Tumour Type", 'Age 60-69' AS "Age", 'Stage 1' AS "stages.MASTER", SUM(statisticofinterest_h_and_n) as statistic_of_interest FROM tumour_cohort_linked_h_and_n WHERE DIAGNOSISYEAR = '2014' AND SITE = 'Larynx including anterior surface of epiglottis' AND STAGE_1234X = 'Stage 1' AND SPLIT_60_70 = 'Age 60-69' UNION ALL SELECT '2014' AS "Year", 'Larynx including anterior surface of epiglottis' AS "Tumour Type", 'Age 70+' AS "Age", 'Stage 1' AS "stages.MASTER", SUM(statisticofinterest_h_and_n) as statistic_of_interest FROM tumour_cohort_linked_h_and_n WHERE DIAGNOSISYEAR = '2014' AND SITE = 'Larynx including anterior surface of epiglottis' AND STAGE_1234X = 'Stage 1' AND SPLIT_60_70 = 'Age 70+' UNION ALL SELECT '2014' AS "Year", 'Larynx including anterior surface of epiglottis' AS "Tumour Type", 'All' AS "Age", 'Stage 2' AS "stages.MASTER", SUM(statisticofinterest_h_and_n) as statistic_of_interest FROM tumour_cohort_linked_h_and_n WHERE DIAGNOSISYEAR = '2014' AND SITE = 'Larynx including anterior surface of epiglottis' AND STAGE_1234X = 'Stage 2' UNION ALL SELECT '2014' AS "Year", 'Larynx including anterior surface of epiglottis' AS "Tumour Type", 'Age 00-59' AS "Age", 'Stage 2' AS "stages.MASTER", SUM(statisticofinterest_h_and_n) as statistic_of_interest FROM tumour_cohort_linked_h_and_n WHERE DIAGNOSISYEAR = '2014' AND SITE = 'Larynx including anterior surface of epiglottis' AND STAGE_1234X = 'Stage 2' AND SPLIT_60_70 = 'Age 00-59' UNION ALL SELECT '2014' AS "Year", 'Larynx including anterior surface of epiglottis' AS "Tumour Type", 'Age 60-69' AS "Age", 'Stage 2' AS "stages.MASTER", SUM(statisticofinterest_h_and_n) as statistic_of_interest FROM tumour_cohort_linked_h_and_n WHERE DIAGNOSISYEAR = '2014' AND SITE = 'Larynx including anterior surface of epiglottis' AND STAGE_1234X = 'Stage 2' AND SPLIT_60_70 = 'Age 60-69' UNION ALL SELECT '2014' AS "Year", 'Larynx including anterior surface of epiglottis' AS "Tumour Type", 'Age 70+' AS "Age", 'Stage 2' AS "stages.MASTER", SUM(statisticofinterest_h_and_n) as statistic_of_interest FROM tumour_cohort_linked_h_and_n WHERE DIAGNOSISYEAR = '2014' AND SITE = 'Larynx including anterior surface of epiglottis' AND STAGE_1234X = 'Stage 2' AND SPLIT_60_70 = 'Age 70+' UNION ALL SELECT '2014' AS "Year", 'Larynx including anterior surface of epiglottis' AS "Tumour Type", 'All' AS "Age", 'Stage 3' AS "stages.MASTER", SUM(statisticofinterest_h_and_n) as statistic_of_interest FROM tumour_cohort_linked_h_and_n WHERE DIAGNOSISYEAR = '2014' AND SITE = 'Larynx including anterior surface of epiglottis' AND STAGE_1234X = 'Stage 3' UNION ALL SELECT '2014' AS "Year", 'Larynx including anterior surface of epiglottis' AS "Tumour Type", 'Age 00-59' AS "Age", 'Stage 3' AS "stages.MASTER", SUM(statisticofinterest_h_and_n) as statistic_of_interest FROM tumour_cohort_linked_h_and_n WHERE DIAGNOSISYEAR = '2014' AND SITE = 'Larynx including anterior surface of epiglottis' AND STAGE_1234X = 'Stage 3' AND SPLIT_60_70 = 'Age 00-59' UNION ALL SELECT '2014' AS "Year", 'Larynx including anterior surface of epiglottis' AS "Tumour Type", 'Age 60-69' AS "Age", 'Stage 3' AS "stages.MASTER", SUM(statisticofinterest_h_and_n) as statistic_of_interest FROM tumour_cohort_linked_h_and_n WHERE DIAGNOSISYEAR = '2014' AND SITE = 'Larynx including anterior surface of epiglottis' AND STAGE_1234X = 'Stage 3' AND SPLIT_60_70 = 'Age 60-69' UNION ALL SELECT '2014' AS "Year", 'Larynx including anterior surface of epiglottis' AS "Tumour Type", 'Age 70+' AS "Age", 'Stage 3' AS "stages.MASTER", SUM(statisticofinterest_h_and_n) as statistic_of_interest FROM tumour_cohort_linked_h_and_n WHERE DIAGNOSISYEAR = '2014' AND SITE = 'Larynx including anterior surface of epiglottis' AND STAGE_1234X = 'Stage 3' AND SPLIT_60_70 = 'Age 70+' UNION ALL SELECT '2014' AS "Year", 'Larynx including anterior surface of epiglottis' AS "Tumour Type", 'All' AS "Age", 'Stage 4' AS "stages.MASTER", SUM(statisticofinterest_h_and_n) as statistic_of_interest FROM tumour_cohort_linked_h_and_n WHERE DIAGNOSISYEAR = '2014' AND SITE = 'Larynx including anterior surface of epiglottis' AND STAGE_1234X = 'Stage 4' UNION ALL SELECT '2014' AS "Year", 'Larynx including anterior surface of epiglottis' AS "Tumour Type", 'Age 00-59' AS "Age", 'Stage 4' AS "stages.MASTER", SUM(statisticofinterest_h_and_n) as statistic_of_interest FROM tumour_cohort_linked_h_and_n WHERE DIAGNOSISYEAR = '2014' AND SITE = 'Larynx including anterior surface of epiglottis' AND STAGE_1234X = 'Stage 4' AND SPLIT_60_70 = 'Age 00-59' UNION ALL SELECT '2014' AS "Year", 'Larynx including anterior surface of epiglottis' AS "Tumour Type", 'Age 60-69' AS "Age", 'Stage 4' AS "stages.MASTER", SUM(statisticofinterest_h_and_n) as statistic_of_interest FROM tumour_cohort_linked_h_and_n WHERE DIAGNOSISYEAR = '2014' AND SITE = 'Larynx including anterior surface of epiglottis' AND STAGE_1234X = 'Stage 4' AND SPLIT_60_70 = 'Age 60-69' UNION ALL SELECT '2014' AS "Year", 'Larynx including anterior surface of epiglottis' AS "Tumour Type", 'Age 70+' AS "Age", 'Stage 4' AS "stages.MASTER", SUM(statisticofinterest_h_and_n) as statistic_of_interest FROM tumour_cohort_linked_h_and_n WHERE DIAGNOSISYEAR = '2014' AND SITE = 'Larynx including anterior surface of epiglottis' AND STAGE_1234X = 'Stage 4' AND SPLIT_60_70 = 'Age 70+' UNION ALL SELECT '2014' AS "Year", 'Larynx including anterior surface of epiglottis' AS "Tumour Type", 'All' AS "Age", 'Stage unknown' AS "stages.MASTER", SUM(statisticofinterest_h_and_n) as statistic_of_interest FROM tumour_cohort_linked_h_and_n WHERE DIAGNOSISYEAR = '2014' AND SITE = 'Larynx including anterior surface of epiglottis' AND STAGE_1234X = 'Stage unknown' UNION ALL SELECT '2014' AS "Year", 'Larynx including anterior surface of epiglottis' AS "Tumour Type", 'Age 00-69' AS "Age", 'Stage unknown' AS "stages.MASTER", SUM(statisticofinterest_h_and_n) as statistic_of_interest FROM tumour_cohort_linked_h_and_n WHERE DIAGNOSISYEAR = '2014' AND SITE = 'Larynx including anterior surface of epiglottis' AND STAGE_1234X = 'Stage unknown' AND SPLIT_70 = 'Age 00-69' UNION ALL SELECT '2014' AS "Year", 'Larynx including anterior surface of epiglottis' AS "Tumour Type", 'Age 70+' AS "Age", 'Stage unknown' AS "stages.MASTER", SUM(statisticofinterest_h_and_n) as statistic_of_interest FROM tumour_cohort_linked_h_and_n WHERE DIAGNOSISYEAR = '2014' AND SITE = 'Larynx including anterior surface of epiglottis' AND STAGE_1234X = 'Stage unknown' AND SPLIT_70 = 'Age 70+' UNION ALL SELECT '2014' AS "Year", 'Major salivary glands' AS "Tumour Type", 'All' AS "Age", 'All' AS "stages.MASTER", SUM(statisticofinterest_h_and_n) as statistic_of_interest FROM tumour_cohort_linked_h_and_n WHERE DIAGNOSISYEAR = '2014' AND SITE = 'Major salivary glands' UNION ALL SELECT '2014' AS "Year", 'Major salivary glands' AS "Tumour Type", 'All' AS "Age", 'Stage 1-3' AS "stages.MASTER", SUM(statisticofinterest_h_and_n) as statistic_of_interest FROM tumour_cohort_linked_h_and_n WHERE DIAGNOSISYEAR = '2014' AND SITE = 'Major salivary glands' AND STAGE_SPLIT13 = 'Stage 1-3' UNION ALL SELECT '2014' AS "Year", 'Major salivary glands' AS "Tumour Type", 'All' AS "Age", 'Stage 4' AS "stages.MASTER", SUM(statisticofinterest_h_and_n) as statistic_of_interest FROM tumour_cohort_linked_h_and_n WHERE DIAGNOSISYEAR = '2014' AND SITE = 'Major salivary glands' AND STAGE_SPLIT13 = 'Stage 4' UNION ALL SELECT '2014' AS "Year", 'Major salivary glands' AS "Tumour Type", 'All' AS "Age", 'Stage unknown' AS "stages.MASTER", SUM(statisticofinterest_h_and_n) as statistic_of_interest FROM tumour_cohort_linked_h_and_n WHERE DIAGNOSISYEAR = '2014' AND SITE = 'Major salivary glands' AND STAGE_SPLIT13 = 'Stage unknown' UNION ALL SELECT '2014' AS "Year", 'Middle ear' AS "Tumour Type", 'All' AS "Age", 'All' AS "stages.MASTER", SUM(statisticofinterest_h_and_n) as statistic_of_interest FROM tumour_cohort_linked_h_and_n WHERE DIAGNOSISYEAR = '2014' AND SITE = 'Middle ear' UNION ALL SELECT '2014' AS "Year", 'Nasal cavity and sinus' AS "Tumour Type", 'All' AS "Age", 'All' AS "stages.MASTER", SUM(statisticofinterest_h_and_n) as statistic_of_interest FROM tumour_cohort_linked_h_and_n WHERE DIAGNOSISYEAR = '2014' AND SITE = 'Nasal cavity and sinus' UNION ALL SELECT '2014' AS "Year", 'Nasal cavity and sinus' AS "Tumour Type", 'All' AS "Age", 'Stage 1-2' AS "stages.MASTER", SUM(statisticofinterest_h_and_n) as statistic_of_interest FROM tumour_cohort_linked_h_and_n WHERE DIAGNOSISYEAR = '2014' AND SITE = 'Nasal cavity and sinus' AND STAGE_SPLIT2 = 'Stage 1-2' UNION ALL SELECT '2014' AS "Year", 'Nasal cavity and sinus' AS "Tumour Type", 'All' AS "Age", 'Stage 3-4' AS "stages.MASTER", SUM(statisticofinterest_h_and_n) as statistic_of_interest FROM tumour_cohort_linked_h_and_n WHERE DIAGNOSISYEAR = '2014' AND SITE = 'Nasal cavity and sinus' AND STAGE_SPLIT2 = 'Stage 3-4' UNION ALL SELECT '2014' AS "Year", 'Nasal cavity and sinus' AS "Tumour Type", 'All' AS "Age", 'Stage unknown' AS "stages.MASTER", SUM(statisticofinterest_h_and_n) as statistic_of_interest FROM tumour_cohort_linked_h_and_n WHERE DIAGNOSISYEAR = '2014' AND SITE = 'Nasal cavity and sinus' AND STAGE_SPLIT2 = 'Stage unknown' UNION ALL SELECT '2014' AS "Year", 'Nasopharynx' AS "Tumour Type", 'All' AS "Age", 'All' AS "stages.MASTER", SUM(statisticofinterest_h_and_n) as statistic_of_interest FROM tumour_cohort_linked_h_and_n WHERE DIAGNOSISYEAR = '2014' AND SITE = 'Nasopharynx' UNION ALL SELECT '2014' AS "Year", 'Oral cavity' AS "Tumour Type", 'All' AS "Age", 'All' AS "stages.MASTER", SUM(statisticofinterest_h_and_n) as statistic_of_interest FROM tumour_cohort_linked_h_and_n WHERE DIAGNOSISYEAR = '2014' AND SITE = 'Oral cavity' UNION ALL SELECT '2014' AS "Year", 'Oral cavity' AS "Tumour Type", 'All' AS "Age", 'Stage 1' AS "stages.MASTER", SUM(statisticofinterest_h_and_n) as statistic_of_interest FROM tumour_cohort_linked_h_and_n WHERE DIAGNOSISYEAR = '2014' AND SITE = 'Oral cavity' AND STAGE_1234X = 'Stage 1' UNION ALL SELECT '2014' AS "Year", 'Oral cavity' AS "Tumour Type", 'Age 00-59' AS "Age", 'Stage 1' AS "stages.MASTER", SUM(statisticofinterest_h_and_n) as statistic_of_interest FROM tumour_cohort_linked_h_and_n WHERE DIAGNOSISYEAR = '2014' AND SITE = 'Oral cavity' AND STAGE_1234X = 'Stage 1' AND SPLIT_60_70 = 'Age 00-59' UNION ALL SELECT '2014' AS "Year", 'Oral cavity' AS "Tumour Type", 'Age 60-69' AS "Age", 'Stage 1' AS "stages.MASTER", SUM(statisticofinterest_h_and_n) as statistic_of_interest FROM tumour_cohort_linked_h_and_n WHERE DIAGNOSISYEAR = '2014' AND SITE = 'Oral cavity' AND STAGE_1234X = 'Stage 1' AND SPLIT_60_70 = 'Age 60-69' UNION ALL SELECT '2014' AS "Year", 'Oral cavity' AS "Tumour Type", 'Age 70+' AS "Age", 'Stage 1' AS "stages.MASTER", SUM(statisticofinterest_h_and_n) as statistic_of_interest FROM tumour_cohort_linked_h_and_n WHERE DIAGNOSISYEAR = '2014' AND SITE = 'Oral cavity' AND STAGE_1234X = 'Stage 1' AND SPLIT_60_70 = 'Age 70+' UNION ALL SELECT '2014' AS "Year", 'Oral cavity' AS "Tumour Type", 'All' AS "Age", 'Stage 2' AS "stages.MASTER", SUM(statisticofinterest_h_and_n) as statistic_of_interest FROM tumour_cohort_linked_h_and_n WHERE DIAGNOSISYEAR = '2014' AND SITE = 'Oral cavity' AND STAGE_1234X = 'Stage 2' UNION ALL SELECT '2014' AS "Year", 'Oral cavity' AS "Tumour Type", 'Age 00-59' AS "Age", 'Stage 2' AS "stages.MASTER", SUM(statisticofinterest_h_and_n) as statistic_of_interest FROM tumour_cohort_linked_h_and_n WHERE DIAGNOSISYEAR = '2014' AND SITE = 'Oral cavity' AND STAGE_1234X = 'Stage 2' AND SPLIT_60_70 = 'Age 00-59' UNION ALL SELECT '2014' AS "Year", 'Oral cavity' AS "Tumour Type", 'Age 60-69' AS "Age", 'Stage 2' AS "stages.MASTER", SUM(statisticofinterest_h_and_n) as statistic_of_interest FROM tumour_cohort_linked_h_and_n WHERE DIAGNOSISYEAR = '2014' AND SITE = 'Oral cavity' AND STAGE_1234X = 'Stage 2' AND SPLIT_60_70 = 'Age 60-69' UNION ALL SELECT '2014' AS "Year", 'Oral cavity' AS "Tumour Type", 'Age 70+' AS "Age", 'Stage 2' AS "stages.MASTER", SUM(statisticofinterest_h_and_n) as statistic_of_interest FROM tumour_cohort_linked_h_and_n WHERE DIAGNOSISYEAR = '2014' AND SITE = 'Oral cavity' AND STAGE_1234X = 'Stage 2' AND SPLIT_60_70 = 'Age 70+' UNION ALL SELECT '2014' AS "Year", 'Oral cavity' AS "Tumour Type", 'All' AS "Age", 'Stage 3' AS "stages.MASTER", SUM(statisticofinterest_h_and_n) as statistic_of_interest FROM tumour_cohort_linked_h_and_n WHERE DIAGNOSISYEAR = '2014' AND SITE = 'Oral cavity' AND STAGE_1234X = 'Stage 3' UNION ALL SELECT '2014' AS "Year", 'Oral cavity' AS "Tumour Type", 'All' AS "Age", 'Stage 4' AS "stages.MASTER", SUM(statisticofinterest_h_and_n) as statistic_of_interest FROM tumour_cohort_linked_h_and_n WHERE DIAGNOSISYEAR = '2014' AND SITE = 'Oral cavity' AND STAGE_1234X = 'Stage 4' UNION ALL SELECT '2014' AS "Year", 'Oral cavity' AS "Tumour Type", 'Age 00-59' AS "Age", 'Stage 4' AS "stages.MASTER", SUM(statisticofinterest_h_and_n) as statistic_of_interest FROM tumour_cohort_linked_h_and_n WHERE DIAGNOSISYEAR = '2014' AND SITE = 'Oral cavity' AND STAGE_1234X = 'Stage 4' AND SPLIT_60_70 = 'Age 00-59' UNION ALL SELECT '2014' AS "Year", 'Oral cavity' AS "Tumour Type", 'Age 60-69' AS "Age", 'Stage 4' AS "stages.MASTER", SUM(statisticofinterest_h_and_n) as statistic_of_interest FROM tumour_cohort_linked_h_and_n WHERE DIAGNOSISYEAR = '2014' AND SITE = 'Oral cavity' AND STAGE_1234X = 'Stage 4' AND SPLIT_60_70 = 'Age 60-69' UNION ALL SELECT '2014' AS "Year", 'Oral cavity' AS "Tumour Type", 'Age 70+' AS "Age", 'Stage 4' AS "stages.MASTER", SUM(statisticofinterest_h_and_n) as statistic_of_interest FROM tumour_cohort_linked_h_and_n WHERE DIAGNOSISYEAR = '2014' AND SITE = 'Oral cavity' AND STAGE_1234X = 'Stage 4' AND SPLIT_60_70 = 'Age 70+' UNION ALL SELECT '2014' AS "Year", 'Oral cavity' AS "Tumour Type", 'All' AS "Age", 'Stage unknown' AS "stages.MASTER", SUM(statisticofinterest_h_and_n) as statistic_of_interest FROM tumour_cohort_linked_h_and_n WHERE DIAGNOSISYEAR = '2014' AND SITE = 'Oral cavity' AND STAGE_1234X = 'Stage unknown' UNION ALL SELECT '2014' AS "Year", 'Oral cavity' AS "Tumour Type", 'Age 00-69' AS "Age", 'Stage unknown' AS "stages.MASTER", SUM(statisticofinterest_h_and_n) as statistic_of_interest FROM tumour_cohort_linked_h_and_n WHERE DIAGNOSISYEAR = '2014' AND SITE = 'Oral cavity' AND STAGE_1234X = 'Stage unknown' AND SPLIT_70 = 'Age 00-69' UNION ALL SELECT '2014' AS "Year", 'Oral cavity' AS "Tumour Type", 'Age 70+' AS "Age", 'Stage unknown' AS "stages.MASTER", SUM(statisticofinterest_h_and_n) as statistic_of_interest FROM tumour_cohort_linked_h_and_n WHERE DIAGNOSISYEAR = '2014' AND SITE = 'Oral cavity' AND STAGE_1234X = 'Stage unknown' AND SPLIT_70 = 'Age 70+' UNION ALL SELECT '2014' AS "Year", 'Oropharynx including base of tongue, soft palate and tonsils' AS "Tumour Type", 'All' AS "Age", 'All' AS "stages.MASTER", SUM(statisticofinterest_h_and_n) as statistic_of_interest FROM tumour_cohort_linked_h_and_n WHERE DIAGNOSISYEAR = '2014' AND SITE = 'Oropharynx including base of tongue, soft palate and tonsils' UNION ALL SELECT '2014' AS "Year", 'Oropharynx including base of tongue, soft palate and tonsils' AS "Tumour Type", 'All' AS "Age", 'Stage 1' AS "stages.MASTER", SUM(statisticofinterest_h_and_n) as statistic_of_interest FROM tumour_cohort_linked_h_and_n WHERE DIAGNOSISYEAR = '2014' AND SITE = 'Oropharynx including base of tongue, soft palate and tonsils' AND STAGE_1234X = 'Stage 1' UNION ALL SELECT '2014' AS "Year", 'Oropharynx including base of tongue, soft palate and tonsils' AS "Tumour Type", 'All' AS "Age", 'Stage 2' AS "stages.MASTER", SUM(statisticofinterest_h_and_n) as statistic_of_interest FROM tumour_cohort_linked_h_and_n WHERE DIAGNOSISYEAR = '2014' AND SITE = 'Oropharynx including base of tongue, soft palate and tonsils' AND STAGE_1234X = 'Stage 2' UNION ALL SELECT '2014' AS "Year", 'Oropharynx including base of tongue, soft palate and tonsils' AS "Tumour Type", 'All' AS "Age", 'Stage 3' AS "stages.MASTER", SUM(statisticofinterest_h_and_n) as statistic_of_interest FROM tumour_cohort_linked_h_and_n WHERE DIAGNOSISYEAR = '2014' AND SITE = 'Oropharynx including base of tongue, soft palate and tonsils' AND STAGE_1234X = 'Stage 3' UNION ALL SELECT '2014' AS "Year", 'Oropharynx including base of tongue, soft palate and tonsils' AS "Tumour Type", 'Age 00-59' AS "Age", 'Stage 3' AS "stages.MASTER", SUM(statisticofinterest_h_and_n) as statistic_of_interest FROM tumour_cohort_linked_h_and_n WHERE DIAGNOSISYEAR = '2014' AND SITE = 'Oropharynx including base of tongue, soft palate and tonsils' AND STAGE_1234X = 'Stage 3' AND SPLIT_60 = 'Age 00-59' UNION ALL SELECT '2014' AS "Year", 'Oropharynx including base of tongue, soft palate and tonsils' AS "Tumour Type", 'Age 60+' AS "Age", 'Stage 3' AS "stages.MASTER", SUM(statisticofinterest_h_and_n) as statistic_of_interest FROM tumour_cohort_linked_h_and_n WHERE DIAGNOSISYEAR = '2014' AND SITE = 'Oropharynx including base of tongue, soft palate and tonsils' AND STAGE_1234X = 'Stage 3' AND SPLIT_60 = 'Age 60+' UNION ALL SELECT '2014' AS "Year", 'Oropharynx including base of tongue, soft palate and tonsils' AS "Tumour Type", 'All' AS "Age", 'Stage 4' AS "stages.MASTER", SUM(statisticofinterest_h_and_n) as statistic_of_interest FROM tumour_cohort_linked_h_and_n WHERE DIAGNOSISYEAR = '2014' AND SITE = 'Oropharynx including base of tongue, soft palate and tonsils' AND STAGE_1234X = 'Stage 4' UNION ALL SELECT '2014' AS "Year", 'Oropharynx including base of tongue, soft palate and tonsils' AS "Tumour Type", 'Age 00-49' AS "Age", 'Stage 4' AS "stages.MASTER", SUM(statisticofinterest_h_and_n) as statistic_of_interest FROM tumour_cohort_linked_h_and_n WHERE DIAGNOSISYEAR = '2014' AND SITE = 'Oropharynx including base of tongue, soft palate and tonsils' AND STAGE_1234X = 'Stage 4' AND SPLIT_50_TO_70 = 'Age 00-49' UNION ALL SELECT '2014' AS "Year", 'Oropharynx including base of tongue, soft palate and tonsils' AS "Tumour Type", 'Age 50-59' AS "Age", 'Stage 4' AS "stages.MASTER", SUM(statisticofinterest_h_and_n) as statistic_of_interest FROM tumour_cohort_linked_h_and_n WHERE DIAGNOSISYEAR = '2014' AND SITE = 'Oropharynx including base of tongue, soft palate and tonsils' AND STAGE_1234X = 'Stage 4' AND SPLIT_50_TO_70 = 'Age 50-59' UNION ALL SELECT '2014' AS "Year", 'Oropharynx including base of tongue, soft palate and tonsils' AS "Tumour Type", 'Age 60-69' AS "Age", 'Stage 4' AS "stages.MASTER", SUM(statisticofinterest_h_and_n) as statistic_of_interest FROM tumour_cohort_linked_h_and_n WHERE DIAGNOSISYEAR = '2014' AND SITE = 'Oropharynx including base of tongue, soft palate and tonsils' AND STAGE_1234X = 'Stage 4' AND SPLIT_50_TO_70 = 'Age 60-69' UNION ALL SELECT '2014' AS "Year", 'Oropharynx including base of tongue, soft palate and tonsils' AS "Tumour Type", 'Age 70+' AS "Age", 'Stage 4' AS "stages.MASTER", SUM(statisticofinterest_h_and_n) as statistic_of_interest FROM tumour_cohort_linked_h_and_n WHERE DIAGNOSISYEAR = '2014' AND SITE = 'Oropharynx including base of tongue, soft palate and tonsils' AND STAGE_1234X = 'Stage 4' AND SPLIT_50_TO_70 = 'Age 70+' UNION ALL SELECT '2014' AS "Year", 'Oropharynx including base of tongue, soft palate and tonsils' AS "Tumour Type", 'All' AS "Age", 'Stage unknown' AS "stages.MASTER", SUM(statisticofinterest_h_and_n) as statistic_of_interest FROM tumour_cohort_linked_h_and_n WHERE DIAGNOSISYEAR = '2014' AND SITE = 'Oropharynx including base of tongue, soft palate and tonsils' AND STAGE_1234X = 'Stage unknown' UNION ALL SELECT '2014' AS "Year", 'Oropharynx including base of tongue, soft palate and tonsils' AS "Tumour Type", 'Age 00-69' AS "Age", 'Stage unknown' AS "stages.MASTER", SUM(statisticofinterest_h_and_n) as statistic_of_interest FROM tumour_cohort_linked_h_and_n WHERE DIAGNOSISYEAR = '2014' AND SITE = 'Oropharynx including base of tongue, soft palate and tonsils' AND STAGE_1234X = 'Stage unknown' AND SPLIT_70 = 'Age 00-69' UNION ALL SELECT '2014' AS "Year", 'Oropharynx including base of tongue, soft palate and tonsils' AS "Tumour Type", 'Age 70+' AS "Age", 'Stage unknown' AS "stages.MASTER", SUM(statisticofinterest_h_and_n) as statistic_of_interest FROM tumour_cohort_linked_h_and_n WHERE DIAGNOSISYEAR = '2014' AND SITE = 'Oropharynx including base of tongue, soft palate and tonsils' AND STAGE_1234X = 'Stage unknown' AND SPLIT_70 = 'Age 70+' UNION ALL SELECT '2014' AS "Year", 'Other and ill-defined sites in the lip, oral cavity and pharynx' AS "Tumour Type", 'All' AS "Age", 'All' AS "stages.MASTER", SUM(statisticofinterest_h_and_n) as statistic_of_interest FROM tumour_cohort_linked_h_and_n WHERE DIAGNOSISYEAR = '2014' AND SITE = 'Other and ill-defined sites in the lip, oral cavity and pharynx' UNION ALL SELECT '2015' AS "Year", 'All' AS "Tumour Type", 'All' AS "Age", 'All' AS "stages.MASTER", SUM(statisticofinterest_h_and_n) as statistic_of_interest FROM tumour_cohort_linked_h_and_n WHERE DIAGNOSISYEAR = '2015' UNION ALL SELECT '2015' AS "Year", 'External lip' AS "Tumour Type", 'All' AS "Age", 'All' AS "stages.MASTER", SUM(statisticofinterest_h_and_n) as statistic_of_interest FROM tumour_cohort_linked_h_and_n WHERE DIAGNOSISYEAR = '2015' AND SITE = 'External lip' UNION ALL SELECT '2015' AS "Year", 'Hypopharynx including piriform sinus' AS "Tumour Type", 'All' AS "Age", 'All' AS "stages.MASTER", SUM(statisticofinterest_h_and_n) as statistic_of_interest FROM tumour_cohort_linked_h_and_n WHERE DIAGNOSISYEAR = '2015' AND SITE = 'Hypopharynx including piriform sinus' UNION ALL SELECT '2015' AS "Year", 'Hypopharynx including piriform sinus' AS "Tumour Type", 'Age 00-59' AS "Age", 'All' AS "stages.MASTER", SUM(statisticofinterest_h_and_n) as statistic_of_interest FROM tumour_cohort_linked_h_and_n WHERE DIAGNOSISYEAR = '2015' AND SITE = 'Hypopharynx including piriform sinus' AND SPLIT_60_70 = 'Age 00-59' UNION ALL SELECT '2015' AS "Year", 'Hypopharynx including piriform sinus' AS "Tumour Type", 'Age 60-69' AS "Age", 'All' AS "stages.MASTER", SUM(statisticofinterest_h_and_n) as statistic_of_interest FROM tumour_cohort_linked_h_and_n WHERE DIAGNOSISYEAR = '2015' AND SITE = 'Hypopharynx including piriform sinus' AND SPLIT_60_70 = 'Age 60-69' UNION ALL SELECT '2015' AS "Year", 'Hypopharynx including piriform sinus' AS "Tumour Type", 'Age 70+' AS "Age", 'All' AS "stages.MASTER", SUM(statisticofinterest_h_and_n) as statistic_of_interest FROM tumour_cohort_linked_h_and_n WHERE DIAGNOSISYEAR = '2015' AND SITE = 'Hypopharynx including piriform sinus' AND SPLIT_60_70 = 'Age 70+' UNION ALL SELECT '2015' AS "Year", 'Larynx including anterior surface of epiglottis' AS "Tumour Type", 'All' AS "Age", 'All' AS "stages.MASTER", SUM(statisticofinterest_h_and_n) as statistic_of_interest FROM tumour_cohort_linked_h_and_n WHERE DIAGNOSISYEAR = '2015' AND SITE = 'Larynx including anterior surface of epiglottis' UNION ALL SELECT '2015' AS "Year", 'Larynx including anterior surface of epiglottis' AS "Tumour Type", 'All' AS "Age", 'Stage 1' AS "stages.MASTER", SUM(statisticofinterest_h_and_n) as statistic_of_interest FROM tumour_cohort_linked_h_and_n WHERE DIAGNOSISYEAR = '2015' AND SITE = 'Larynx including anterior surface of epiglottis' AND STAGE_1234X = 'Stage 1' UNION ALL SELECT '2015' AS "Year", 'Larynx including anterior surface of epiglottis' AS "Tumour Type", 'Age 00-59' AS "Age", 'Stage 1' AS "stages.MASTER", SUM(statisticofinterest_h_and_n) as statistic_of_interest FROM tumour_cohort_linked_h_and_n WHERE DIAGNOSISYEAR = '2015' AND SITE = 'Larynx including anterior surface of epiglottis' AND STAGE_1234X = 'Stage 1' AND SPLIT_60_70 = 'Age 00-59' UNION ALL SELECT '2015' AS "Year", 'Larynx including anterior surface of epiglottis' AS "Tumour Type", 'Age 60-69' AS "Age", 'Stage 1' AS "stages.MASTER", SUM(statisticofinterest_h_and_n) as statistic_of_interest FROM tumour_cohort_linked_h_and_n WHERE DIAGNOSISYEAR = '2015' AND SITE = 'Larynx including anterior surface of epiglottis' AND STAGE_1234X = 'Stage 1' AND SPLIT_60_70 = 'Age 60-69' UNION ALL SELECT '2015' AS "Year", 'Larynx including anterior surface of epiglottis' AS "Tumour Type", 'Age 70+' AS "Age", 'Stage 1' AS "stages.MASTER", SUM(statisticofinterest_h_and_n) as statistic_of_interest FROM tumour_cohort_linked_h_and_n WHERE DIAGNOSISYEAR = '2015' AND SITE = 'Larynx including anterior surface of epiglottis' AND STAGE_1234X = 'Stage 1' AND SPLIT_60_70 = 'Age 70+' UNION ALL SELECT '2015' AS "Year", 'Larynx including anterior surface of epiglottis' AS "Tumour Type", 'All' AS "Age", 'Stage 2' AS "stages.MASTER", SUM(statisticofinterest_h_and_n) as statistic_of_interest FROM tumour_cohort_linked_h_and_n WHERE DIAGNOSISYEAR = '2015' AND SITE = 'Larynx including anterior surface of epiglottis' AND STAGE_1234X = 'Stage 2' UNION ALL SELECT '2015' AS "Year", 'Larynx including anterior surface of epiglottis' AS "Tumour Type", 'Age 00-59' AS "Age", 'Stage 2' AS "stages.MASTER", SUM(statisticofinterest_h_and_n) as statistic_of_interest FROM tumour_cohort_linked_h_and_n WHERE DIAGNOSISYEAR = '2015' AND SITE = 'Larynx including anterior surface of epiglottis' AND STAGE_1234X = 'Stage 2' AND SPLIT_60_70 = 'Age 00-59' UNION ALL SELECT '2015' AS "Year", 'Larynx including anterior surface of epiglottis' AS "Tumour Type", 'Age 60-69' AS "Age", 'Stage 2' AS "stages.MASTER", SUM(statisticofinterest_h_and_n) as statistic_of_interest FROM tumour_cohort_linked_h_and_n WHERE DIAGNOSISYEAR = '2015' AND SITE = 'Larynx including anterior surface of epiglottis' AND STAGE_1234X = 'Stage 2' AND SPLIT_60_70 = 'Age 60-69' UNION ALL SELECT '2015' AS "Year", 'Larynx including anterior surface of epiglottis' AS "Tumour Type", 'Age 70+' AS "Age", 'Stage 2' AS "stages.MASTER", SUM(statisticofinterest_h_and_n) as statistic_of_interest FROM tumour_cohort_linked_h_and_n WHERE DIAGNOSISYEAR = '2015' AND SITE = 'Larynx including anterior surface of epiglottis' AND STAGE_1234X = 'Stage 2' AND SPLIT_60_70 = 'Age 70+' UNION ALL SELECT '2015' AS "Year", 'Larynx including anterior surface of epiglottis' AS "Tumour Type", 'All' AS "Age", 'Stage 3' AS "stages.MASTER", SUM(statisticofinterest_h_and_n) as statistic_of_interest FROM tumour_cohort_linked_h_and_n WHERE DIAGNOSISYEAR = '2015' AND SITE = 'Larynx including anterior surface of epiglottis' AND STAGE_1234X = 'Stage 3' UNION ALL SELECT '2015' AS "Year", 'Larynx including anterior surface of epiglottis' AS "Tumour Type", 'Age 00-59' AS "Age", 'Stage 3' AS "stages.MASTER", SUM(statisticofinterest_h_and_n) as statistic_of_interest FROM tumour_cohort_linked_h_and_n WHERE DIAGNOSISYEAR = '2015' AND SITE = 'Larynx including anterior surface of epiglottis' AND STAGE_1234X = 'Stage 3' AND SPLIT_60_70 = 'Age 00-59' UNION ALL SELECT '2015' AS "Year", 'Larynx including anterior surface of epiglottis' AS "Tumour Type", 'Age 60-69' AS "Age", 'Stage 3' AS "stages.MASTER", SUM(statisticofinterest_h_and_n) as statistic_of_interest FROM tumour_cohort_linked_h_and_n WHERE DIAGNOSISYEAR = '2015' AND SITE = 'Larynx including anterior surface of epiglottis' AND STAGE_1234X = 'Stage 3' AND SPLIT_60_70 = 'Age 60-69' UNION ALL SELECT '2015' AS "Year", 'Larynx including anterior surface of epiglottis' AS "Tumour Type", 'Age 70+' AS "Age", 'Stage 3' AS "stages.MASTER", SUM(statisticofinterest_h_and_n) as statistic_of_interest FROM tumour_cohort_linked_h_and_n WHERE DIAGNOSISYEAR = '2015' AND SITE = 'Larynx including anterior surface of epiglottis' AND STAGE_1234X = 'Stage 3' AND SPLIT_60_70 = 'Age 70+' UNION ALL SELECT '2015' AS "Year", 'Larynx including anterior surface of epiglottis' AS "Tumour Type", 'All' AS "Age", 'Stage 4' AS "stages.MASTER", SUM(statisticofinterest_h_and_n) as statistic_of_interest FROM tumour_cohort_linked_h_and_n WHERE DIAGNOSISYEAR = '2015' AND SITE = 'Larynx including anterior surface of epiglottis' AND STAGE_1234X = 'Stage 4' UNION ALL SELECT '2015' AS "Year", 'Larynx including anterior surface of epiglottis' AS "Tumour Type", 'Age 00-59' AS "Age", 'Stage 4' AS "stages.MASTER", SUM(statisticofinterest_h_and_n) as statistic_of_interest FROM tumour_cohort_linked_h_and_n WHERE DIAGNOSISYEAR = '2015' AND SITE = 'Larynx including anterior surface of epiglottis' AND STAGE_1234X = 'Stage 4' AND SPLIT_60_70 = 'Age 00-59' UNION ALL SELECT '2015' AS "Year", 'Larynx including anterior surface of epiglottis' AS "Tumour Type", 'Age 60-69' AS "Age", 'Stage 4' AS "stages.MASTER", SUM(statisticofinterest_h_and_n) as statistic_of_interest FROM tumour_cohort_linked_h_and_n WHERE DIAGNOSISYEAR = '2015' AND SITE = 'Larynx including anterior surface of epiglottis' AND STAGE_1234X = 'Stage 4' AND SPLIT_60_70 = 'Age 60-69' UNION ALL SELECT '2015' AS "Year", 'Larynx including anterior surface of epiglottis' AS "Tumour Type", 'Age 70+' AS "Age", 'Stage 4' AS "stages.MASTER", SUM(statisticofinterest_h_and_n) as statistic_of_interest FROM tumour_cohort_linked_h_and_n WHERE DIAGNOSISYEAR = '2015' AND SITE = 'Larynx including anterior surface of epiglottis' AND STAGE_1234X = 'Stage 4' AND SPLIT_60_70 = 'Age 70+' UNION ALL SELECT '2015' AS "Year", 'Larynx including anterior surface of epiglottis' AS "Tumour Type", 'All' AS "Age", 'Stage unknown' AS "stages.MASTER", SUM(statisticofinterest_h_and_n) as statistic_of_interest FROM tumour_cohort_linked_h_and_n WHERE DIAGNOSISYEAR = '2015' AND SITE = 'Larynx including anterior surface of epiglottis' AND STAGE_1234X = 'Stage unknown' UNION ALL SELECT '2015' AS "Year", 'Larynx including anterior surface of epiglottis' AS "Tumour Type", 'Age 00-69' AS "Age", 'Stage unknown' AS "stages.MASTER", SUM(statisticofinterest_h_and_n) as statistic_of_interest FROM tumour_cohort_linked_h_and_n WHERE DIAGNOSISYEAR = '2015' AND SITE = 'Larynx including anterior surface of epiglottis' AND STAGE_1234X = 'Stage unknown' AND SPLIT_70 = 'Age 00-69' UNION ALL SELECT '2015' AS "Year", 'Larynx including anterior surface of epiglottis' AS "Tumour Type", 'Age 70+' AS "Age", 'Stage unknown' AS "stages.MASTER", SUM(statisticofinterest_h_and_n) as statistic_of_interest FROM tumour_cohort_linked_h_and_n WHERE DIAGNOSISYEAR = '2015' AND SITE = 'Larynx including anterior surface of epiglottis' AND STAGE_1234X = 'Stage unknown' AND SPLIT_70 = 'Age 70+' UNION ALL SELECT '2015' AS "Year", 'Major salivary glands' AS "Tumour Type", 'All' AS "Age", 'All' AS "stages.MASTER", SUM(statisticofinterest_h_and_n) as statistic_of_interest FROM tumour_cohort_linked_h_and_n WHERE DIAGNOSISYEAR = '2015' AND SITE = 'Major salivary glands' UNION ALL SELECT '2015' AS "Year", 'Major salivary glands' AS "Tumour Type", 'All' AS "Age", 'Stage 1-3' AS "stages.MASTER", SUM(statisticofinterest_h_and_n) as statistic_of_interest FROM tumour_cohort_linked_h_and_n WHERE DIAGNOSISYEAR = '2015' AND SITE = 'Major salivary glands' AND STAGE_SPLIT13 = 'Stage 1-3' UNION ALL SELECT '2015' AS "Year", 'Major salivary glands' AS "Tumour Type", 'All' AS "Age", 'Stage 4' AS "stages.MASTER", SUM(statisticofinterest_h_and_n) as statistic_of_interest FROM tumour_cohort_linked_h_and_n WHERE DIAGNOSISYEAR = '2015' AND SITE = 'Major salivary glands' AND STAGE_SPLIT13 = 'Stage 4' UNION ALL SELECT '2015' AS "Year", 'Major salivary glands' AS "Tumour Type", 'All' AS "Age", 'Stage unknown' AS "stages.MASTER", SUM(statisticofinterest_h_and_n) as statistic_of_interest FROM tumour_cohort_linked_h_and_n WHERE DIAGNOSISYEAR = '2015' AND SITE = 'Major salivary glands' AND STAGE_SPLIT13 = 'Stage unknown' UNION ALL SELECT '2015' AS "Year", 'Middle ear' AS "Tumour Type", 'All' AS "Age", 'All' AS "stages.MASTER", SUM(statisticofinterest_h_and_n) as statistic_of_interest FROM tumour_cohort_linked_h_and_n WHERE DIAGNOSISYEAR = '2015' AND SITE = 'Middle ear' UNION ALL SELECT '2015' AS "Year", 'Nasal cavity and sinus' AS "Tumour Type", 'All' AS "Age", 'All' AS "stages.MASTER", SUM(statisticofinterest_h_and_n) as statistic_of_interest FROM tumour_cohort_linked_h_and_n WHERE DIAGNOSISYEAR = '2015' AND SITE = 'Nasal cavity and sinus' UNION ALL SELECT '2015' AS "Year", 'Nasal cavity and sinus' AS "Tumour Type", 'All' AS "Age", 'Stage 1-2' AS "stages.MASTER", SUM(statisticofinterest_h_and_n) as statistic_of_interest FROM tumour_cohort_linked_h_and_n WHERE DIAGNOSISYEAR = '2015' AND SITE = 'Nasal cavity and sinus' AND STAGE_SPLIT2 = 'Stage 1-2' UNION ALL SELECT '2015' AS "Year", 'Nasal cavity and sinus' AS "Tumour Type", 'All' AS "Age", 'Stage 3-4' AS "stages.MASTER", SUM(statisticofinterest_h_and_n) as statistic_of_interest FROM tumour_cohort_linked_h_and_n WHERE DIAGNOSISYEAR = '2015' AND SITE = 'Nasal cavity and sinus' AND STAGE_SPLIT2 = 'Stage 3-4' UNION ALL SELECT '2015' AS "Year", 'Nasal cavity and sinus' AS "Tumour Type", 'All' AS "Age", 'Stage unknown' AS "stages.MASTER", SUM(statisticofinterest_h_and_n) as statistic_of_interest FROM tumour_cohort_linked_h_and_n WHERE DIAGNOSISYEAR = '2015' AND SITE = 'Nasal cavity and sinus' AND STAGE_SPLIT2 = 'Stage unknown' UNION ALL SELECT '2015' AS "Year", 'Nasopharynx' AS "Tumour Type", 'All' AS "Age", 'All' AS "stages.MASTER", SUM(statisticofinterest_h_and_n) as statistic_of_interest FROM tumour_cohort_linked_h_and_n WHERE DIAGNOSISYEAR = '2015' AND SITE = 'Nasopharynx' UNION ALL SELECT '2015' AS "Year", 'Oral cavity' AS "Tumour Type", 'All' AS "Age", 'All' AS "stages.MASTER", SUM(statisticofinterest_h_and_n) as statistic_of_interest FROM tumour_cohort_linked_h_and_n WHERE DIAGNOSISYEAR = '2015' AND SITE = 'Oral cavity' UNION ALL SELECT '2015' AS "Year", 'Oral cavity' AS "Tumour Type", 'All' AS "Age", 'Stage 1' AS "stages.MASTER", SUM(statisticofinterest_h_and_n) as statistic_of_interest FROM tumour_cohort_linked_h_and_n WHERE DIAGNOSISYEAR = '2015' AND SITE = 'Oral cavity' AND STAGE_1234X = 'Stage 1' UNION ALL SELECT '2015' AS "Year", 'Oral cavity' AS "Tumour Type", 'Age 00-59' AS "Age", 'Stage 1' AS "stages.MASTER", SUM(statisticofinterest_h_and_n) as statistic_of_interest FROM tumour_cohort_linked_h_and_n WHERE DIAGNOSISYEAR = '2015' AND SITE = 'Oral cavity' AND STAGE_1234X = 'Stage 1' AND SPLIT_60_70 = 'Age 00-59' UNION ALL SELECT '2015' AS "Year", 'Oral cavity' AS "Tumour Type", 'Age 60-69' AS "Age", 'Stage 1' AS "stages.MASTER", SUM(statisticofinterest_h_and_n) as statistic_of_interest FROM tumour_cohort_linked_h_and_n WHERE DIAGNOSISYEAR = '2015' AND SITE = 'Oral cavity' AND STAGE_1234X = 'Stage 1' AND SPLIT_60_70 = 'Age 60-69' UNION ALL SELECT '2015' AS "Year", 'Oral cavity' AS "Tumour Type", 'Age 70+' AS "Age", 'Stage 1' AS "stages.MASTER", SUM(statisticofinterest_h_and_n) as statistic_of_interest FROM tumour_cohort_linked_h_and_n WHERE DIAGNOSISYEAR = '2015' AND SITE = 'Oral cavity' AND STAGE_1234X = 'Stage 1' AND SPLIT_60_70 = 'Age 70+' UNION ALL SELECT '2015' AS "Year", 'Oral cavity' AS "Tumour Type", 'All' AS "Age", 'Stage 2' AS "stages.MASTER", SUM(statisticofinterest_h_and_n) as statistic_of_interest FROM tumour_cohort_linked_h_and_n WHERE DIAGNOSISYEAR = '2015' AND SITE = 'Oral cavity' AND STAGE_1234X = 'Stage 2' UNION ALL SELECT '2015' AS "Year", 'Oral cavity' AS "Tumour Type", 'Age 00-59' AS "Age", 'Stage 2' AS "stages.MASTER", SUM(statisticofinterest_h_and_n) as statistic_of_interest FROM tumour_cohort_linked_h_and_n WHERE DIAGNOSISYEAR = '2015' AND SITE = 'Oral cavity' AND STAGE_1234X = 'Stage 2' AND SPLIT_60_70 = 'Age 00-59' UNION ALL SELECT '2015' AS "Year", 'Oral cavity' AS "Tumour Type", 'Age 60-69' AS "Age", 'Stage 2' AS "stages.MASTER", SUM(statisticofinterest_h_and_n) as statistic_of_interest FROM tumour_cohort_linked_h_and_n WHERE DIAGNOSISYEAR = '2015' AND SITE = 'Oral cavity' AND STAGE_1234X = 'Stage 2' AND SPLIT_60_70 = 'Age 60-69' UNION ALL SELECT '2015' AS "Year", 'Oral cavity' AS "Tumour Type", 'Age 70+' AS "Age", 'Stage 2' AS "stages.MASTER", SUM(statisticofinterest_h_and_n) as statistic_of_interest FROM tumour_cohort_linked_h_and_n WHERE DIAGNOSISYEAR = '2015' AND SITE = 'Oral cavity' AND STAGE_1234X = 'Stage 2' AND SPLIT_60_70 = 'Age 70+' UNION ALL SELECT '2015' AS "Year", 'Oral cavity' AS "Tumour Type", 'All' AS "Age", 'Stage 3' AS "stages.MASTER", SUM(statisticofinterest_h_and_n) as statistic_of_interest FROM tumour_cohort_linked_h_and_n WHERE DIAGNOSISYEAR = '2015' AND SITE = 'Oral cavity' AND STAGE_1234X = 'Stage 3' UNION ALL SELECT '2015' AS "Year", 'Oral cavity' AS "Tumour Type", 'All' AS "Age", 'Stage 4' AS "stages.MASTER", SUM(statisticofinterest_h_and_n) as statistic_of_interest FROM tumour_cohort_linked_h_and_n WHERE DIAGNOSISYEAR = '2015' AND SITE = 'Oral cavity' AND STAGE_1234X = 'Stage 4' UNION ALL SELECT '2015' AS "Year", 'Oral cavity' AS "Tumour Type", 'Age 00-59' AS "Age", 'Stage 4' AS "stages.MASTER", SUM(statisticofinterest_h_and_n) as statistic_of_interest FROM tumour_cohort_linked_h_and_n WHERE DIAGNOSISYEAR = '2015' AND SITE = 'Oral cavity' AND STAGE_1234X = 'Stage 4' AND SPLIT_60_70 = 'Age 00-59' UNION ALL SELECT '2015' AS "Year", 'Oral cavity' AS "Tumour Type", 'Age 60-69' AS "Age", 'Stage 4' AS "stages.MASTER", SUM(statisticofinterest_h_and_n) as statistic_of_interest FROM tumour_cohort_linked_h_and_n WHERE DIAGNOSISYEAR = '2015' AND SITE = 'Oral cavity' AND STAGE_1234X = 'Stage 4' AND SPLIT_60_70 = 'Age 60-69' UNION ALL SELECT '2015' AS "Year", 'Oral cavity' AS "Tumour Type", 'Age 70+' AS "Age", 'Stage 4' AS "stages.MASTER", SUM(statisticofinterest_h_and_n) as statistic_of_interest FROM tumour_cohort_linked_h_and_n WHERE DIAGNOSISYEAR = '2015' AND SITE = 'Oral cavity' AND STAGE_1234X = 'Stage 4' AND SPLIT_60_70 = 'Age 70+' UNION ALL SELECT '2015' AS "Year", 'Oral cavity' AS "Tumour Type", 'All' AS "Age", 'Stage unknown' AS "stages.MASTER", SUM(statisticofinterest_h_and_n) as statistic_of_interest FROM tumour_cohort_linked_h_and_n WHERE DIAGNOSISYEAR = '2015' AND SITE = 'Oral cavity' AND STAGE_1234X = 'Stage unknown' UNION ALL SELECT '2015' AS "Year", 'Oral cavity' AS "Tumour Type", 'Age 00-69' AS "Age", 'Stage unknown' AS "stages.MASTER", SUM(statisticofinterest_h_and_n) as statistic_of_interest FROM tumour_cohort_linked_h_and_n WHERE DIAGNOSISYEAR = '2015' AND SITE = 'Oral cavity' AND STAGE_1234X = 'Stage unknown' AND SPLIT_70 = 'Age 00-69' UNION ALL SELECT '2015' AS "Year", 'Oral cavity' AS "Tumour Type", 'Age 70+' AS "Age", 'Stage unknown' AS "stages.MASTER", SUM(statisticofinterest_h_and_n) as statistic_of_interest FROM tumour_cohort_linked_h_and_n WHERE DIAGNOSISYEAR = '2015' AND SITE = 'Oral cavity' AND STAGE_1234X = 'Stage unknown' AND SPLIT_70 = 'Age 70+' UNION ALL SELECT '2015' AS "Year", 'Oropharynx including base of tongue, soft palate and tonsils' AS "Tumour Type", 'All' AS "Age", 'All' AS "stages.MASTER", SUM(statisticofinterest_h_and_n) as statistic_of_interest FROM tumour_cohort_linked_h_and_n WHERE DIAGNOSISYEAR = '2015' AND SITE = 'Oropharynx including base of tongue, soft palate and tonsils' UNION ALL SELECT '2015' AS "Year", 'Oropharynx including base of tongue, soft palate and tonsils' AS "Tumour Type", 'All' AS "Age", 'Stage 1' AS "stages.MASTER", SUM(statisticofinterest_h_and_n) as statistic_of_interest FROM tumour_cohort_linked_h_and_n WHERE DIAGNOSISYEAR = '2015' AND SITE = 'Oropharynx including base of tongue, soft palate and tonsils' AND STAGE_1234X = 'Stage 1' UNION ALL SELECT '2015' AS "Year", 'Oropharynx including base of tongue, soft palate and tonsils' AS "Tumour Type", 'All' AS "Age", 'Stage 2' AS "stages.MASTER", SUM(statisticofinterest_h_and_n) as statistic_of_interest FROM tumour_cohort_linked_h_and_n WHERE DIAGNOSISYEAR = '2015' AND SITE = 'Oropharynx including base of tongue, soft palate and tonsils' AND STAGE_1234X = 'Stage 2' UNION ALL SELECT '2015' AS "Year", 'Oropharynx including base of tongue, soft palate and tonsils' AS "Tumour Type", 'All' AS "Age", 'Stage 3' AS "stages.MASTER", SUM(statisticofinterest_h_and_n) as statistic_of_interest FROM tumour_cohort_linked_h_and_n WHERE DIAGNOSISYEAR = '2015' AND SITE = 'Oropharynx including base of tongue, soft palate and tonsils' AND STAGE_1234X = 'Stage 3' UNION ALL SELECT '2015' AS "Year", 'Oropharynx including base of tongue, soft palate and tonsils' AS "Tumour Type", 'Age 00-59' AS "Age", 'Stage 3' AS "stages.MASTER", SUM(statisticofinterest_h_and_n) as statistic_of_interest FROM tumour_cohort_linked_h_and_n WHERE DIAGNOSISYEAR = '2015' AND SITE = 'Oropharynx including base of tongue, soft palate and tonsils' AND STAGE_1234X = 'Stage 3' AND SPLIT_60 = 'Age 00-59' UNION ALL SELECT '2015' AS "Year", 'Oropharynx including base of tongue, soft palate and tonsils' AS "Tumour Type", 'Age 60+' AS "Age", 'Stage 3' AS "stages.MASTER", SUM(statisticofinterest_h_and_n) as statistic_of_interest FROM tumour_cohort_linked_h_and_n WHERE DIAGNOSISYEAR = '2015' AND SITE = 'Oropharynx including base of tongue, soft palate and tonsils' AND STAGE_1234X = 'Stage 3' AND SPLIT_60 = 'Age 60+' UNION ALL SELECT '2015' AS "Year", 'Oropharynx including base of tongue, soft palate and tonsils' AS "Tumour Type", 'All' AS "Age", 'Stage 4' AS "stages.MASTER", SUM(statisticofinterest_h_and_n) as statistic_of_interest FROM tumour_cohort_linked_h_and_n WHERE DIAGNOSISYEAR = '2015' AND SITE = 'Oropharynx including base of tongue, soft palate and tonsils' AND STAGE_1234X = 'Stage 4' UNION ALL SELECT '2015' AS "Year", 'Oropharynx including base of tongue, soft palate and tonsils' AS "Tumour Type", 'Age 00-49' AS "Age", 'Stage 4' AS "stages.MASTER", SUM(statisticofinterest_h_and_n) as statistic_of_interest FROM tumour_cohort_linked_h_and_n WHERE DIAGNOSISYEAR = '2015' AND SITE = 'Oropharynx including base of tongue, soft palate and tonsils' AND STAGE_1234X = 'Stage 4' AND SPLIT_50_TO_70 = 'Age 00-49' UNION ALL SELECT '2015' AS "Year", 'Oropharynx including base of tongue, soft palate and tonsils' AS "Tumour Type", 'Age 50-59' AS "Age", 'Stage 4' AS "stages.MASTER", SUM(statisticofinterest_h_and_n) as statistic_of_interest FROM tumour_cohort_linked_h_and_n WHERE DIAGNOSISYEAR = '2015' AND SITE = 'Oropharynx including base of tongue, soft palate and tonsils' AND STAGE_1234X = 'Stage 4' AND SPLIT_50_TO_70 = 'Age 50-59' UNION ALL SELECT '2015' AS "Year", 'Oropharynx including base of tongue, soft palate and tonsils' AS "Tumour Type", 'Age 60-69' AS "Age", 'Stage 4' AS "stages.MASTER", SUM(statisticofinterest_h_and_n) as statistic_of_interest FROM tumour_cohort_linked_h_and_n WHERE DIAGNOSISYEAR = '2015' AND SITE = 'Oropharynx including base of tongue, soft palate and tonsils' AND STAGE_1234X = 'Stage 4' AND SPLIT_50_TO_70 = 'Age 60-69' UNION ALL SELECT '2015' AS "Year", 'Oropharynx including base of tongue, soft palate and tonsils' AS "Tumour Type", 'Age 70+' AS "Age", 'Stage 4' AS "stages.MASTER", SUM(statisticofinterest_h_and_n) as statistic_of_interest FROM tumour_cohort_linked_h_and_n WHERE DIAGNOSISYEAR = '2015' AND SITE = 'Oropharynx including base of tongue, soft palate and tonsils' AND STAGE_1234X = 'Stage 4' AND SPLIT_50_TO_70 = 'Age 70+' UNION ALL SELECT '2015' AS "Year", 'Oropharynx including base of tongue, soft palate and tonsils' AS "Tumour Type", 'All' AS "Age", 'Stage unknown' AS "stages.MASTER", SUM(statisticofinterest_h_and_n) as statistic_of_interest FROM tumour_cohort_linked_h_and_n WHERE DIAGNOSISYEAR = '2015' AND SITE = 'Oropharynx including base of tongue, soft palate and tonsils' AND STAGE_1234X = 'Stage unknown' UNION ALL SELECT '2015' AS "Year", 'Oropharynx including base of tongue, soft palate and tonsils' AS "Tumour Type", 'Age 00-69' AS "Age", 'Stage unknown' AS "stages.MASTER", SUM(statisticofinterest_h_and_n) as statistic_of_interest FROM tumour_cohort_linked_h_and_n WHERE DIAGNOSISYEAR = '2015' AND SITE = 'Oropharynx including base of tongue, soft palate and tonsils' AND STAGE_1234X = 'Stage unknown' AND SPLIT_70 = 'Age 00-69' UNION ALL SELECT '2015' AS "Year", 'Oropharynx including base of tongue, soft palate and tonsils' AS "Tumour Type", 'Age 70+' AS "Age", 'Stage unknown' AS "stages.MASTER", SUM(statisticofinterest_h_and_n) as statistic_of_interest FROM tumour_cohort_linked_h_and_n WHERE DIAGNOSISYEAR = '2015' AND SITE = 'Oropharynx including base of tongue, soft palate and tonsils' AND STAGE_1234X = 'Stage unknown' AND SPLIT_70 = 'Age 70+' UNION ALL SELECT '2015' AS "Year", 'Other and ill-defined sites in the lip, oral cavity and pharynx' AS "Tumour Type", 'All' AS "Age", 'All' AS "stages.MASTER", SUM(statisticofinterest_h_and_n) as statistic_of_interest FROM tumour_cohort_linked_h_and_n WHERE DIAGNOSISYEAR = '2015' AND SITE = 'Other and ill-defined sites in the lip, oral cavity and pharynx' UNION ALL SELECT '2016' AS "Year", 'All' AS "Tumour Type", 'All' AS "Age", 'All' AS "stages.MASTER", SUM(statisticofinterest_h_and_n) as statistic_of_interest FROM tumour_cohort_linked_h_and_n WHERE DIAGNOSISYEAR = '2016' UNION ALL SELECT '2016' AS "Year", 'External lip' AS "Tumour Type", 'All' AS "Age", 'All' AS "stages.MASTER", SUM(statisticofinterest_h_and_n) as statistic_of_interest FROM tumour_cohort_linked_h_and_n WHERE DIAGNOSISYEAR = '2016' AND SITE = 'External lip' UNION ALL SELECT '2016' AS "Year", 'Hypopharynx including piriform sinus' AS "Tumour Type", 'All' AS "Age", 'All' AS "stages.MASTER", SUM(statisticofinterest_h_and_n) as statistic_of_interest FROM tumour_cohort_linked_h_and_n WHERE DIAGNOSISYEAR = '2016' AND SITE = 'Hypopharynx including piriform sinus' UNION ALL SELECT '2016' AS "Year", 'Hypopharynx including piriform sinus' AS "Tumour Type", 'Age 00-59' AS "Age", 'All' AS "stages.MASTER", SUM(statisticofinterest_h_and_n) as statistic_of_interest FROM tumour_cohort_linked_h_and_n WHERE DIAGNOSISYEAR = '2016' AND SITE = 'Hypopharynx including piriform sinus' AND SPLIT_60_70 = 'Age 00-59' UNION ALL SELECT '2016' AS "Year", 'Hypopharynx including piriform sinus' AS "Tumour Type", 'Age 60-69' AS "Age", 'All' AS "stages.MASTER", SUM(statisticofinterest_h_and_n) as statistic_of_interest FROM tumour_cohort_linked_h_and_n WHERE DIAGNOSISYEAR = '2016' AND SITE = 'Hypopharynx including piriform sinus' AND SPLIT_60_70 = 'Age 60-69' UNION ALL SELECT '2016' AS "Year", 'Hypopharynx including piriform sinus' AS "Tumour Type", 'Age 70+' AS "Age", 'All' AS "stages.MASTER", SUM(statisticofinterest_h_and_n) as statistic_of_interest FROM tumour_cohort_linked_h_and_n WHERE DIAGNOSISYEAR = '2016' AND SITE = 'Hypopharynx including piriform sinus' AND SPLIT_60_70 = 'Age 70+' UNION ALL SELECT '2016' AS "Year", 'Larynx including anterior surface of epiglottis' AS "Tumour Type", 'All' AS "Age", 'All' AS "stages.MASTER", SUM(statisticofinterest_h_and_n) as statistic_of_interest FROM tumour_cohort_linked_h_and_n WHERE DIAGNOSISYEAR = '2016' AND SITE = 'Larynx including anterior surface of epiglottis' UNION ALL SELECT '2016' AS "Year", 'Larynx including anterior surface of epiglottis' AS "Tumour Type", 'All' AS "Age", 'Stage 1' AS "stages.MASTER", SUM(statisticofinterest_h_and_n) as statistic_of_interest FROM tumour_cohort_linked_h_and_n WHERE DIAGNOSISYEAR = '2016' AND SITE = 'Larynx including anterior surface of epiglottis' AND STAGE_1234X = 'Stage 1' UNION ALL SELECT '2016' AS "Year", 'Larynx including anterior surface of epiglottis' AS "Tumour Type", 'Age 00-59' AS "Age", 'Stage 1' AS "stages.MASTER", SUM(statisticofinterest_h_and_n) as statistic_of_interest FROM tumour_cohort_linked_h_and_n WHERE DIAGNOSISYEAR = '2016' AND SITE = 'Larynx including anterior surface of epiglottis' AND STAGE_1234X = 'Stage 1' AND SPLIT_60_70 = 'Age 00-59' UNION ALL SELECT '2016' AS "Year", 'Larynx including anterior surface of epiglottis' AS "Tumour Type", 'Age 60-69' AS "Age", 'Stage 1' AS "stages.MASTER", SUM(statisticofinterest_h_and_n) as statistic_of_interest FROM tumour_cohort_linked_h_and_n WHERE DIAGNOSISYEAR = '2016' AND SITE = 'Larynx including anterior surface of epiglottis' AND STAGE_1234X = 'Stage 1' AND SPLIT_60_70 = 'Age 60-69' UNION ALL SELECT '2016' AS "Year", 'Larynx including anterior surface of epiglottis' AS "Tumour Type", 'Age 70+' AS "Age", 'Stage 1' AS "stages.MASTER", SUM(statisticofinterest_h_and_n) as statistic_of_interest FROM tumour_cohort_linked_h_and_n WHERE DIAGNOSISYEAR = '2016' AND SITE = 'Larynx including anterior surface of epiglottis' AND STAGE_1234X = 'Stage 1' AND SPLIT_60_70 = 'Age 70+' UNION ALL SELECT '2016' AS "Year", 'Larynx including anterior surface of epiglottis' AS "Tumour Type", 'All' AS "Age", 'Stage 2' AS "stages.MASTER", SUM(statisticofinterest_h_and_n) as statistic_of_interest FROM tumour_cohort_linked_h_and_n WHERE DIAGNOSISYEAR = '2016' AND SITE = 'Larynx including anterior surface of epiglottis' AND STAGE_1234X = 'Stage 2' UNION ALL SELECT '2016' AS "Year", 'Larynx including anterior surface of epiglottis' AS "Tumour Type", 'Age 00-59' AS "Age", 'Stage 2' AS "stages.MASTER", SUM(statisticofinterest_h_and_n) as statistic_of_interest FROM tumour_cohort_linked_h_and_n WHERE DIAGNOSISYEAR = '2016' AND SITE = 'Larynx including anterior surface of epiglottis' AND STAGE_1234X = 'Stage 2' AND SPLIT_60_70 = 'Age 00-59' UNION ALL SELECT '2016' AS "Year", 'Larynx including anterior surface of epiglottis' AS "Tumour Type", 'Age 60-69' AS "Age", 'Stage 2' AS "stages.MASTER", SUM(statisticofinterest_h_and_n) as statistic_of_interest FROM tumour_cohort_linked_h_and_n WHERE DIAGNOSISYEAR = '2016' AND SITE = 'Larynx including anterior surface of epiglottis' AND STAGE_1234X = 'Stage 2' AND SPLIT_60_70 = 'Age 60-69' UNION ALL SELECT '2016' AS "Year", 'Larynx including anterior surface of epiglottis' AS "Tumour Type", 'Age 70+' AS "Age", 'Stage 2' AS "stages.MASTER", SUM(statisticofinterest_h_and_n) as statistic_of_interest FROM tumour_cohort_linked_h_and_n WHERE DIAGNOSISYEAR = '2016' AND SITE = 'Larynx including anterior surface of epiglottis' AND STAGE_1234X = 'Stage 2' AND SPLIT_60_70 = 'Age 70+' UNION ALL SELECT '2016' AS "Year", 'Larynx including anterior surface of epiglottis' AS "Tumour Type", 'All' AS "Age", 'Stage 3' AS "stages.MASTER", SUM(statisticofinterest_h_and_n) as statistic_of_interest FROM tumour_cohort_linked_h_and_n WHERE DIAGNOSISYEAR = '2016' AND SITE = 'Larynx including anterior surface of epiglottis' AND STAGE_1234X = 'Stage 3' UNION ALL SELECT '2016' AS "Year", 'Larynx including anterior surface of epiglottis' AS "Tumour Type", 'Age 00-59' AS "Age", 'Stage 3' AS "stages.MASTER", SUM(statisticofinterest_h_and_n) as statistic_of_interest FROM tumour_cohort_linked_h_and_n WHERE DIAGNOSISYEAR = '2016' AND SITE = 'Larynx including anterior surface of epiglottis' AND STAGE_1234X = 'Stage 3' AND SPLIT_60_70 = 'Age 00-59' UNION ALL SELECT '2016' AS "Year", 'Larynx including anterior surface of epiglottis' AS "Tumour Type", 'Age 60-69' AS "Age", 'Stage 3' AS "stages.MASTER", SUM(statisticofinterest_h_and_n) as statistic_of_interest FROM tumour_cohort_linked_h_and_n WHERE DIAGNOSISYEAR = '2016' AND SITE = 'Larynx including anterior surface of epiglottis' AND STAGE_1234X = 'Stage 3' AND SPLIT_60_70 = 'Age 60-69' UNION ALL SELECT '2016' AS "Year", 'Larynx including anterior surface of epiglottis' AS "Tumour Type", 'Age 70+' AS "Age", 'Stage 3' AS "stages.MASTER", SUM(statisticofinterest_h_and_n) as statistic_of_interest FROM tumour_cohort_linked_h_and_n WHERE DIAGNOSISYEAR = '2016' AND SITE = 'Larynx including anterior surface of epiglottis' AND STAGE_1234X = 'Stage 3' AND SPLIT_60_70 = 'Age 70+' UNION ALL SELECT '2016' AS "Year", 'Larynx including anterior surface of epiglottis' AS "Tumour Type", 'All' AS "Age", 'Stage 4' AS "stages.MASTER", SUM(statisticofinterest_h_and_n) as statistic_of_interest FROM tumour_cohort_linked_h_and_n WHERE DIAGNOSISYEAR = '2016' AND SITE = 'Larynx including anterior surface of epiglottis' AND STAGE_1234X = 'Stage 4' UNION ALL SELECT '2016' AS "Year", 'Larynx including anterior surface of epiglottis' AS "Tumour Type", 'Age 00-59' AS "Age", 'Stage 4' AS "stages.MASTER", SUM(statisticofinterest_h_and_n) as statistic_of_interest FROM tumour_cohort_linked_h_and_n WHERE DIAGNOSISYEAR = '2016' AND SITE = 'Larynx including anterior surface of epiglottis' AND STAGE_1234X = 'Stage 4' AND SPLIT_60_70 = 'Age 00-59' UNION ALL SELECT '2016' AS "Year", 'Larynx including anterior surface of epiglottis' AS "Tumour Type", 'Age 60-69' AS "Age", 'Stage 4' AS "stages.MASTER", SUM(statisticofinterest_h_and_n) as statistic_of_interest FROM tumour_cohort_linked_h_and_n WHERE DIAGNOSISYEAR = '2016' AND SITE = 'Larynx including anterior surface of epiglottis' AND STAGE_1234X = 'Stage 4' AND SPLIT_60_70 = 'Age 60-69' UNION ALL SELECT '2016' AS "Year", 'Larynx including anterior surface of epiglottis' AS "Tumour Type", 'Age 70+' AS "Age", 'Stage 4' AS "stages.MASTER", SUM(statisticofinterest_h_and_n) as statistic_of_interest FROM tumour_cohort_linked_h_and_n WHERE DIAGNOSISYEAR = '2016' AND SITE = 'Larynx including anterior surface of epiglottis' AND STAGE_1234X = 'Stage 4' AND SPLIT_60_70 = 'Age 70+' UNION ALL SELECT '2016' AS "Year", 'Larynx including anterior surface of epiglottis' AS "Tumour Type", 'All' AS "Age", 'Stage unknown' AS "stages.MASTER", SUM(statisticofinterest_h_and_n) as statistic_of_interest FROM tumour_cohort_linked_h_and_n WHERE DIAGNOSISYEAR = '2016' AND SITE = 'Larynx including anterior surface of epiglottis' AND STAGE_1234X = 'Stage unknown' UNION ALL SELECT '2016' AS "Year", 'Larynx including anterior surface of epiglottis' AS "Tumour Type", 'Age 00-69' AS "Age", 'Stage unknown' AS "stages.MASTER", SUM(statisticofinterest_h_and_n) as statistic_of_interest FROM tumour_cohort_linked_h_and_n WHERE DIAGNOSISYEAR = '2016' AND SITE = 'Larynx including anterior surface of epiglottis' AND STAGE_1234X = 'Stage unknown' AND SPLIT_70 = 'Age 00-69' UNION ALL SELECT '2016' AS "Year", 'Larynx including anterior surface of epiglottis' AS "Tumour Type", 'Age 70+' AS "Age", 'Stage unknown' AS "stages.MASTER", SUM(statisticofinterest_h_and_n) as statistic_of_interest FROM tumour_cohort_linked_h_and_n WHERE DIAGNOSISYEAR = '2016' AND SITE = 'Larynx including anterior surface of epiglottis' AND STAGE_1234X = 'Stage unknown' AND SPLIT_70 = 'Age 70+' UNION ALL SELECT '2016' AS "Year", 'Major salivary glands' AS "Tumour Type", 'All' AS "Age", 'All' AS "stages.MASTER", SUM(statisticofinterest_h_and_n) as statistic_of_interest FROM tumour_cohort_linked_h_and_n WHERE DIAGNOSISYEAR = '2016' AND SITE = 'Major salivary glands' UNION ALL SELECT '2016' AS "Year", 'Major salivary glands' AS "Tumour Type", 'All' AS "Age", 'Stage 1-3' AS "stages.MASTER", SUM(statisticofinterest_h_and_n) as statistic_of_interest FROM tumour_cohort_linked_h_and_n WHERE DIAGNOSISYEAR = '2016' AND SITE = 'Major salivary glands' AND STAGE_SPLIT13 = 'Stage 1-3' UNION ALL SELECT '2016' AS "Year", 'Major salivary glands' AS "Tumour Type", 'All' AS "Age", 'Stage 4' AS "stages.MASTER", SUM(statisticofinterest_h_and_n) as statistic_of_interest FROM tumour_cohort_linked_h_and_n WHERE DIAGNOSISYEAR = '2016' AND SITE = 'Major salivary glands' AND STAGE_SPLIT13 = 'Stage 4' UNION ALL SELECT '2016' AS "Year", 'Major salivary glands' AS "Tumour Type", 'All' AS "Age", 'Stage unknown' AS "stages.MASTER", SUM(statisticofinterest_h_and_n) as statistic_of_interest FROM tumour_cohort_linked_h_and_n WHERE DIAGNOSISYEAR = '2016' AND SITE = 'Major salivary glands' AND STAGE_SPLIT13 = 'Stage unknown' UNION ALL SELECT '2016' AS "Year", 'Middle ear' AS "Tumour Type", 'All' AS "Age", 'All' AS "stages.MASTER", SUM(statisticofinterest_h_and_n) as statistic_of_interest FROM tumour_cohort_linked_h_and_n WHERE DIAGNOSISYEAR = '2016' AND SITE = 'Middle ear' UNION ALL SELECT '2016' AS "Year", 'Nasal cavity and sinus' AS "Tumour Type", 'All' AS "Age", 'All' AS "stages.MASTER", SUM(statisticofinterest_h_and_n) as statistic_of_interest FROM tumour_cohort_linked_h_and_n WHERE DIAGNOSISYEAR = '2016' AND SITE = 'Nasal cavity and sinus' UNION ALL SELECT '2016' AS "Year", 'Nasal cavity and sinus' AS "Tumour Type", 'All' AS "Age", 'Stage 1-2' AS "stages.MASTER", SUM(statisticofinterest_h_and_n) as statistic_of_interest FROM tumour_cohort_linked_h_and_n WHERE DIAGNOSISYEAR = '2016' AND SITE = 'Nasal cavity and sinus' AND STAGE_SPLIT2 = 'Stage 1-2' UNION ALL SELECT '2016' AS "Year", 'Nasal cavity and sinus' AS "Tumour Type", 'All' AS "Age", 'Stage 3-4' AS "stages.MASTER", SUM(statisticofinterest_h_and_n) as statistic_of_interest FROM tumour_cohort_linked_h_and_n WHERE DIAGNOSISYEAR = '2016' AND SITE = 'Nasal cavity and sinus' AND STAGE_SPLIT2 = 'Stage 3-4' UNION ALL SELECT '2016' AS "Year", 'Nasal cavity and sinus' AS "Tumour Type", 'All' AS "Age", 'Stage unknown' AS "stages.MASTER", SUM(statisticofinterest_h_and_n) as statistic_of_interest FROM tumour_cohort_linked_h_and_n WHERE DIAGNOSISYEAR = '2016' AND SITE = 'Nasal cavity and sinus' AND STAGE_SPLIT2 = 'Stage unknown' UNION ALL SELECT '2016' AS "Year", 'Nasopharynx' AS "Tumour Type", 'All' AS "Age", 'All' AS "stages.MASTER", SUM(statisticofinterest_h_and_n) as statistic_of_interest FROM tumour_cohort_linked_h_and_n WHERE DIAGNOSISYEAR = '2016' AND SITE = 'Nasopharynx' UNION ALL SELECT '2016' AS "Year", 'Oral cavity' AS "Tumour Type", 'All' AS "Age", 'All' AS "stages.MASTER", SUM(statisticofinterest_h_and_n) as statistic_of_interest FROM tumour_cohort_linked_h_and_n WHERE DIAGNOSISYEAR = '2016' AND SITE = 'Oral cavity' UNION ALL SELECT '2016' AS "Year", 'Oral cavity' AS "Tumour Type", 'All' AS "Age", 'Stage 1' AS "stages.MASTER", SUM(statisticofinterest_h_and_n) as statistic_of_interest FROM tumour_cohort_linked_h_and_n WHERE DIAGNOSISYEAR = '2016' AND SITE = 'Oral cavity' AND STAGE_1234X = 'Stage 1' UNION ALL SELECT '2016' AS "Year", 'Oral cavity' AS "Tumour Type", 'Age 00-59' AS "Age", 'Stage 1' AS "stages.MASTER", SUM(statisticofinterest_h_and_n) as statistic_of_interest FROM tumour_cohort_linked_h_and_n WHERE DIAGNOSISYEAR = '2016' AND SITE = 'Oral cavity' AND STAGE_1234X = 'Stage 1' AND SPLIT_60_70 = 'Age 00-59' UNION ALL SELECT '2016' AS "Year", 'Oral cavity' AS "Tumour Type", 'Age 60-69' AS "Age", 'Stage 1' AS "stages.MASTER", SUM(statisticofinterest_h_and_n) as statistic_of_interest FROM tumour_cohort_linked_h_and_n WHERE DIAGNOSISYEAR = '2016' AND SITE = 'Oral cavity' AND STAGE_1234X = 'Stage 1' AND SPLIT_60_70 = 'Age 60-69' UNION ALL SELECT '2016' AS "Year", 'Oral cavity' AS "Tumour Type", 'Age 70+' AS "Age", 'Stage 1' AS "stages.MASTER", SUM(statisticofinterest_h_and_n) as statistic_of_interest FROM tumour_cohort_linked_h_and_n WHERE DIAGNOSISYEAR = '2016' AND SITE = 'Oral cavity' AND STAGE_1234X = 'Stage 1' AND SPLIT_60_70 = 'Age 70+' UNION ALL SELECT '2016' AS "Year", 'Oral cavity' AS "Tumour Type", 'All' AS "Age", 'Stage 2' AS "stages.MASTER", SUM(statisticofinterest_h_and_n) as statistic_of_interest FROM tumour_cohort_linked_h_and_n WHERE DIAGNOSISYEAR = '2016' AND SITE = 'Oral cavity' AND STAGE_1234X = 'Stage 2' UNION ALL SELECT '2016' AS "Year", 'Oral cavity' AS "Tumour Type", 'Age 00-59' AS "Age", 'Stage 2' AS "stages.MASTER", SUM(statisticofinterest_h_and_n) as statistic_of_interest FROM tumour_cohort_linked_h_and_n WHERE DIAGNOSISYEAR = '2016' AND SITE = 'Oral cavity' AND STAGE_1234X = 'Stage 2' AND SPLIT_60_70 = 'Age 00-59' UNION ALL SELECT '2016' AS "Year", 'Oral cavity' AS "Tumour Type", 'Age 60-69' AS "Age", 'Stage 2' AS "stages.MASTER", SUM(statisticofinterest_h_and_n) as statistic_of_interest FROM tumour_cohort_linked_h_and_n WHERE DIAGNOSISYEAR = '2016' AND SITE = 'Oral cavity' AND STAGE_1234X = 'Stage 2' AND SPLIT_60_70 = 'Age 60-69' UNION ALL SELECT '2016' AS "Year", 'Oral cavity' AS "Tumour Type", 'Age 70+' AS "Age", 'Stage 2' AS "stages.MASTER", SUM(statisticofinterest_h_and_n) as statistic_of_interest FROM tumour_cohort_linked_h_and_n WHERE DIAGNOSISYEAR = '2016' AND SITE = 'Oral cavity' AND STAGE_1234X = 'Stage 2' AND SPLIT_60_70 = 'Age 70+' UNION ALL SELECT '2016' AS "Year", 'Oral cavity' AS "Tumour Type", 'All' AS "Age", 'Stage 3' AS "stages.MASTER", SUM(statisticofinterest_h_and_n) as statistic_of_interest FROM tumour_cohort_linked_h_and_n WHERE DIAGNOSISYEAR = '2016' AND SITE = 'Oral cavity' AND STAGE_1234X = 'Stage 3' UNION ALL SELECT '2016' AS "Year", 'Oral cavity' AS "Tumour Type", 'All' AS "Age", 'Stage 4' AS "stages.MASTER", SUM(statisticofinterest_h_and_n) as statistic_of_interest FROM tumour_cohort_linked_h_and_n WHERE DIAGNOSISYEAR = '2016' AND SITE = 'Oral cavity' AND STAGE_1234X = 'Stage 4' UNION ALL SELECT '2016' AS "Year", 'Oral cavity' AS "Tumour Type", 'Age 00-59' AS "Age", 'Stage 4' AS "stages.MASTER", SUM(statisticofinterest_h_and_n) as statistic_of_interest FROM tumour_cohort_linked_h_and_n WHERE DIAGNOSISYEAR = '2016' AND SITE = 'Oral cavity' AND STAGE_1234X = 'Stage 4' AND SPLIT_60_70 = 'Age 00-59' UNION ALL SELECT '2016' AS "Year", 'Oral cavity' AS "Tumour Type", 'Age 60-69' AS "Age", 'Stage 4' AS "stages.MASTER", SUM(statisticofinterest_h_and_n) as statistic_of_interest FROM tumour_cohort_linked_h_and_n WHERE DIAGNOSISYEAR = '2016' AND SITE = 'Oral cavity' AND STAGE_1234X = 'Stage 4' AND SPLIT_60_70 = 'Age 60-69' UNION ALL SELECT '2016' AS "Year", 'Oral cavity' AS "Tumour Type", 'Age 70+' AS "Age", 'Stage 4' AS "stages.MASTER", SUM(statisticofinterest_h_and_n) as statistic_of_interest FROM tumour_cohort_linked_h_and_n WHERE DIAGNOSISYEAR = '2016' AND SITE = 'Oral cavity' AND STAGE_1234X = 'Stage 4' AND SPLIT_60_70 = 'Age 70+' UNION ALL SELECT '2016' AS "Year", 'Oral cavity' AS "Tumour Type", 'All' AS "Age", 'Stage unknown' AS "stages.MASTER", SUM(statisticofinterest_h_and_n) as statistic_of_interest FROM tumour_cohort_linked_h_and_n WHERE DIAGNOSISYEAR = '2016' AND SITE = 'Oral cavity' AND STAGE_1234X = 'Stage unknown' UNION ALL SELECT '2016' AS "Year", 'Oral cavity' AS "Tumour Type", 'Age 00-69' AS "Age", 'Stage unknown' AS "stages.MASTER", SUM(statisticofinterest_h_and_n) as statistic_of_interest FROM tumour_cohort_linked_h_and_n WHERE DIAGNOSISYEAR = '2016' AND SITE = 'Oral cavity' AND STAGE_1234X = 'Stage unknown' AND SPLIT_70 = 'Age 00-69' UNION ALL SELECT '2016' AS "Year", 'Oral cavity' AS "Tumour Type", 'Age 70+' AS "Age", 'Stage unknown' AS "stages.MASTER", SUM(statisticofinterest_h_and_n) as statistic_of_interest FROM tumour_cohort_linked_h_and_n WHERE DIAGNOSISYEAR = '2016' AND SITE = 'Oral cavity' AND STAGE_1234X = 'Stage unknown' AND SPLIT_70 = 'Age 70+' UNION ALL SELECT '2016' AS "Year", 'Oropharynx including base of tongue, soft palate and tonsils' AS "Tumour Type", 'All' AS "Age", 'All' AS "stages.MASTER", SUM(statisticofinterest_h_and_n) as statistic_of_interest FROM tumour_cohort_linked_h_and_n WHERE DIAGNOSISYEAR = '2016' AND SITE = 'Oropharynx including base of tongue, soft palate and tonsils' UNION ALL SELECT '2016' AS "Year", 'Oropharynx including base of tongue, soft palate and tonsils' AS "Tumour Type", 'All' AS "Age", 'Stage 1' AS "stages.MASTER", SUM(statisticofinterest_h_and_n) as statistic_of_interest FROM tumour_cohort_linked_h_and_n WHERE DIAGNOSISYEAR = '2016' AND SITE = 'Oropharynx including base of tongue, soft palate and tonsils' AND STAGE_1234X = 'Stage 1' UNION ALL SELECT '2016' AS "Year", 'Oropharynx including base of tongue, soft palate and tonsils' AS "Tumour Type", 'All' AS "Age", 'Stage 2' AS "stages.MASTER", SUM(statisticofinterest_h_and_n) as statistic_of_interest FROM tumour_cohort_linked_h_and_n WHERE DIAGNOSISYEAR = '2016' AND SITE = 'Oropharynx including base of tongue, soft palate and tonsils' AND STAGE_1234X = 'Stage 2' UNION ALL SELECT '2016' AS "Year", 'Oropharynx including base of tongue, soft palate and tonsils' AS "Tumour Type", 'All' AS "Age", 'Stage 3' AS "stages.MASTER", SUM(statisticofinterest_h_and_n) as statistic_of_interest FROM tumour_cohort_linked_h_and_n WHERE DIAGNOSISYEAR = '2016' AND SITE = 'Oropharynx including base of tongue, soft palate and tonsils' AND STAGE_1234X = 'Stage 3' UNION ALL SELECT '2016' AS "Year", 'Oropharynx including base of tongue, soft palate and tonsils' AS "Tumour Type", 'Age 00-59' AS "Age", 'Stage 3' AS "stages.MASTER", SUM(statisticofinterest_h_and_n) as statistic_of_interest FROM tumour_cohort_linked_h_and_n WHERE DIAGNOSISYEAR = '2016' AND SITE = 'Oropharynx including base of tongue, soft palate and tonsils' AND STAGE_1234X = 'Stage 3' AND SPLIT_60 = 'Age 00-59' UNION ALL SELECT '2016' AS "Year", 'Oropharynx including base of tongue, soft palate and tonsils' AS "Tumour Type", 'Age 60+' AS "Age", 'Stage 3' AS "stages.MASTER", SUM(statisticofinterest_h_and_n) as statistic_of_interest FROM tumour_cohort_linked_h_and_n WHERE DIAGNOSISYEAR = '2016' AND SITE = 'Oropharynx including base of tongue, soft palate and tonsils' AND STAGE_1234X = 'Stage 3' AND SPLIT_60 = 'Age 60+' UNION ALL SELECT '2016' AS "Year", 'Oropharynx including base of tongue, soft palate and tonsils' AS "Tumour Type", 'All' AS "Age", 'Stage 4' AS "stages.MASTER", SUM(statisticofinterest_h_and_n) as statistic_of_interest FROM tumour_cohort_linked_h_and_n WHERE DIAGNOSISYEAR = '2016' AND SITE = 'Oropharynx including base of tongue, soft palate and tonsils' AND STAGE_1234X = 'Stage 4' UNION ALL SELECT '2016' AS "Year", 'Oropharynx including base of tongue, soft palate and tonsils' AS "Tumour Type", 'Age 00-49' AS "Age", 'Stage 4' AS "stages.MASTER", SUM(statisticofinterest_h_and_n) as statistic_of_interest FROM tumour_cohort_linked_h_and_n WHERE DIAGNOSISYEAR = '2016' AND SITE = 'Oropharynx including base of tongue, soft palate and tonsils' AND STAGE_1234X = 'Stage 4' AND SPLIT_50_TO_70 = 'Age 00-49' UNION ALL SELECT '2016' AS "Year", 'Oropharynx including base of tongue, soft palate and tonsils' AS "Tumour Type", 'Age 50-59' AS "Age", 'Stage 4' AS "stages.MASTER", SUM(statisticofinterest_h_and_n) as statistic_of_interest FROM tumour_cohort_linked_h_and_n WHERE DIAGNOSISYEAR = '2016' AND SITE = 'Oropharynx including base of tongue, soft palate and tonsils' AND STAGE_1234X = 'Stage 4' AND SPLIT_50_TO_70 = 'Age 50-59' UNION ALL SELECT '2016' AS "Year", 'Oropharynx including base of tongue, soft palate and tonsils' AS "Tumour Type", 'Age 60-69' AS "Age", 'Stage 4' AS "stages.MASTER", SUM(statisticofinterest_h_and_n) as statistic_of_interest FROM tumour_cohort_linked_h_and_n WHERE DIAGNOSISYEAR = '2016' AND SITE = 'Oropharynx including base of tongue, soft palate and tonsils' AND STAGE_1234X = 'Stage 4' AND SPLIT_50_TO_70 = 'Age 60-69' UNION ALL SELECT '2016' AS "Year", 'Oropharynx including base of tongue, soft palate and tonsils' AS "Tumour Type", 'Age 70+' AS "Age", 'Stage 4' AS "stages.MASTER", SUM(statisticofinterest_h_and_n) as statistic_of_interest FROM tumour_cohort_linked_h_and_n WHERE DIAGNOSISYEAR = '2016' AND SITE = 'Oropharynx including base of tongue, soft palate and tonsils' AND STAGE_1234X = 'Stage 4' AND SPLIT_50_TO_70 = 'Age 70+' UNION ALL SELECT '2016' AS "Year", 'Oropharynx including base of tongue, soft palate and tonsils' AS "Tumour Type", 'All' AS "Age", 'Stage unknown' AS "stages.MASTER", SUM(statisticofinterest_h_and_n) as statistic_of_interest FROM tumour_cohort_linked_h_and_n WHERE DIAGNOSISYEAR = '2016' AND SITE = 'Oropharynx including base of tongue, soft palate and tonsils' AND STAGE_1234X = 'Stage unknown' UNION ALL SELECT '2016' AS "Year", 'Oropharynx including base of tongue, soft palate and tonsils' AS "Tumour Type", 'Age 00-69' AS "Age", 'Stage unknown' AS "stages.MASTER", SUM(statisticofinterest_h_and_n) as statistic_of_interest FROM tumour_cohort_linked_h_and_n WHERE DIAGNOSISYEAR = '2016' AND SITE = 'Oropharynx including base of tongue, soft palate and tonsils' AND STAGE_1234X = 'Stage unknown' AND SPLIT_70 = 'Age 00-69' UNION ALL SELECT '2016' AS "Year", 'Oropharynx including base of tongue, soft palate and tonsils' AS "Tumour Type", 'Age 70+' AS "Age", 'Stage unknown' AS "stages.MASTER", SUM(statisticofinterest_h_and_n) as statistic_of_interest FROM tumour_cohort_linked_h_and_n WHERE DIAGNOSISYEAR = '2016' AND SITE = 'Oropharynx including base of tongue, soft palate and tonsils' AND STAGE_1234X = 'Stage unknown' AND SPLIT_70 = 'Age 70+' UNION ALL SELECT '2016' AS "Year", 'Other and ill-defined sites in the lip, oral cavity and pharynx' AS "Tumour Type", 'All' AS "Age", 'All' AS "stages.MASTER", SUM(statisticofinterest_h_and_n) as statistic_of_interest FROM tumour_cohort_linked_h_and_n WHERE DIAGNOSISYEAR = '2016' AND SITE = 'Other and ill-defined sites in the lip, oral cavity and pharynx' UNION ALL SELECT '2017' AS "Year", 'All' AS "Tumour Type", 'All' AS "Age", 'All' AS "stages.MASTER", SUM(statisticofinterest_h_and_n) as statistic_of_interest FROM tumour_cohort_linked_h_and_n WHERE DIAGNOSISYEAR = '2017' UNION ALL SELECT '2017' AS "Year", 'External lip' AS "Tumour Type", 'All' AS "Age", 'All' AS "stages.MASTER", SUM(statisticofinterest_h_and_n) as statistic_of_interest FROM tumour_cohort_linked_h_and_n WHERE DIAGNOSISYEAR = '2017' AND SITE = 'External lip' UNION ALL SELECT '2017' AS "Year", 'Hypopharynx including piriform sinus' AS "Tumour Type", 'All' AS "Age", 'All' AS "stages.MASTER", SUM(statisticofinterest_h_and_n) as statistic_of_interest FROM tumour_cohort_linked_h_and_n WHERE DIAGNOSISYEAR = '2017' AND SITE = 'Hypopharynx including piriform sinus' UNION ALL SELECT '2017' AS "Year", 'Hypopharynx including piriform sinus' AS "Tumour Type", 'Age 00-59' AS "Age", 'All' AS "stages.MASTER", SUM(statisticofinterest_h_and_n) as statistic_of_interest FROM tumour_cohort_linked_h_and_n WHERE DIAGNOSISYEAR = '2017' AND SITE = 'Hypopharynx including piriform sinus' AND SPLIT_60_70 = 'Age 00-59' UNION ALL SELECT '2017' AS "Year", 'Hypopharynx including piriform sinus' AS "Tumour Type", 'Age 60-69' AS "Age", 'All' AS "stages.MASTER", SUM(statisticofinterest_h_and_n) as statistic_of_interest FROM tumour_cohort_linked_h_and_n WHERE DIAGNOSISYEAR = '2017' AND SITE = 'Hypopharynx including piriform sinus' AND SPLIT_60_70 = 'Age 60-69' UNION ALL SELECT '2017' AS "Year", 'Hypopharynx including piriform sinus' AS "Tumour Type", 'Age 70+' AS "Age", 'All' AS "stages.MASTER", SUM(statisticofinterest_h_and_n) as statistic_of_interest FROM tumour_cohort_linked_h_and_n WHERE DIAGNOSISYEAR = '2017' AND SITE = 'Hypopharynx including piriform sinus' AND SPLIT_60_70 = 'Age 70+' UNION ALL SELECT '2017' AS "Year", 'Larynx including anterior surface of epiglottis' AS "Tumour Type", 'All' AS "Age", 'All' AS "stages.MASTER", SUM(statisticofinterest_h_and_n) as statistic_of_interest FROM tumour_cohort_linked_h_and_n WHERE DIAGNOSISYEAR = '2017' AND SITE = 'Larynx including anterior surface of epiglottis' UNION ALL SELECT '2017' AS "Year", 'Larynx including anterior surface of epiglottis' AS "Tumour Type", 'All' AS "Age", 'Stage 1' AS "stages.MASTER", SUM(statisticofinterest_h_and_n) as statistic_of_interest FROM tumour_cohort_linked_h_and_n WHERE DIAGNOSISYEAR = '2017' AND SITE = 'Larynx including anterior surface of epiglottis' AND STAGE_1234X = 'Stage 1' UNION ALL SELECT '2017' AS "Year", 'Larynx including anterior surface of epiglottis' AS "Tumour Type", 'Age 00-59' AS "Age", 'Stage 1' AS "stages.MASTER", SUM(statisticofinterest_h_and_n) as statistic_of_interest FROM tumour_cohort_linked_h_and_n WHERE DIAGNOSISYEAR = '2017' AND SITE = 'Larynx including anterior surface of epiglottis' AND STAGE_1234X = 'Stage 1' AND SPLIT_60_70 = 'Age 00-59' UNION ALL SELECT '2017' AS "Year", 'Larynx including anterior surface of epiglottis' AS "Tumour Type", 'Age 60-69' AS "Age", 'Stage 1' AS "stages.MASTER", SUM(statisticofinterest_h_and_n) as statistic_of_interest FROM tumour_cohort_linked_h_and_n WHERE DIAGNOSISYEAR = '2017' AND SITE = 'Larynx including anterior surface of epiglottis' AND STAGE_1234X = 'Stage 1' AND SPLIT_60_70 = 'Age 60-69' UNION ALL SELECT '2017' AS "Year", 'Larynx including anterior surface of epiglottis' AS "Tumour Type", 'Age 70+' AS "Age", 'Stage 1' AS "stages.MASTER", SUM(statisticofinterest_h_and_n) as statistic_of_interest FROM tumour_cohort_linked_h_and_n WHERE DIAGNOSISYEAR = '2017' AND SITE = 'Larynx including anterior surface of epiglottis' AND STAGE_1234X = 'Stage 1' AND SPLIT_60_70 = 'Age 70+' UNION ALL SELECT '2017' AS "Year", 'Larynx including anterior surface of epiglottis' AS "Tumour Type", 'All' AS "Age", 'Stage 2' AS "stages.MASTER", SUM(statisticofinterest_h_and_n) as statistic_of_interest FROM tumour_cohort_linked_h_and_n WHERE DIAGNOSISYEAR = '2017' AND SITE = 'Larynx including anterior surface of epiglottis' AND STAGE_1234X = 'Stage 2' UNION ALL SELECT '2017' AS "Year", 'Larynx including anterior surface of epiglottis' AS "Tumour Type", 'Age 00-59' AS "Age", 'Stage 2' AS "stages.MASTER", SUM(statisticofinterest_h_and_n) as statistic_of_interest FROM tumour_cohort_linked_h_and_n WHERE DIAGNOSISYEAR = '2017' AND SITE = 'Larynx including anterior surface of epiglottis' AND STAGE_1234X = 'Stage 2' AND SPLIT_60_70 = 'Age 00-59' UNION ALL SELECT '2017' AS "Year", 'Larynx including anterior surface of epiglottis' AS "Tumour Type", 'Age 60-69' AS "Age", 'Stage 2' AS "stages.MASTER", SUM(statisticofinterest_h_and_n) as statistic_of_interest FROM tumour_cohort_linked_h_and_n WHERE DIAGNOSISYEAR = '2017' AND SITE = 'Larynx including anterior surface of epiglottis' AND STAGE_1234X = 'Stage 2' AND SPLIT_60_70 = 'Age 60-69' UNION ALL SELECT '2017' AS "Year", 'Larynx including anterior surface of epiglottis' AS "Tumour Type", 'Age 70+' AS "Age", 'Stage 2' AS "stages.MASTER", SUM(statisticofinterest_h_and_n) as statistic_of_interest FROM tumour_cohort_linked_h_and_n WHERE DIAGNOSISYEAR = '2017' AND SITE = 'Larynx including anterior surface of epiglottis' AND STAGE_1234X = 'Stage 2' AND SPLIT_60_70 = 'Age 70+' UNION ALL SELECT '2017' AS "Year", 'Larynx including anterior surface of epiglottis' AS "Tumour Type", 'All' AS "Age", 'Stage 3' AS "stages.MASTER", SUM(statisticofinterest_h_and_n) as statistic_of_interest FROM tumour_cohort_linked_h_and_n WHERE DIAGNOSISYEAR = '2017' AND SITE = 'Larynx including anterior surface of epiglottis' AND STAGE_1234X = 'Stage 3' UNION ALL SELECT '2017' AS "Year", 'Larynx including anterior surface of epiglottis' AS "Tumour Type", 'Age 00-59' AS "Age", 'Stage 3' AS "stages.MASTER", SUM(statisticofinterest_h_and_n) as statistic_of_interest FROM tumour_cohort_linked_h_and_n WHERE DIAGNOSISYEAR = '2017' AND SITE = 'Larynx including anterior surface of epiglottis' AND STAGE_1234X = 'Stage 3' AND SPLIT_60_70 = 'Age 00-59' UNION ALL SELECT '2017' AS "Year", 'Larynx including anterior surface of epiglottis' AS "Tumour Type", 'Age 60-69' AS "Age", 'Stage 3' AS "stages.MASTER", SUM(statisticofinterest_h_and_n) as statistic_of_interest FROM tumour_cohort_linked_h_and_n WHERE DIAGNOSISYEAR = '2017' AND SITE = 'Larynx including anterior surface of epiglottis' AND STAGE_1234X = 'Stage 3' AND SPLIT_60_70 = 'Age 60-69' UNION ALL SELECT '2017' AS "Year", 'Larynx including anterior surface of epiglottis' AS "Tumour Type", 'Age 70+' AS "Age", 'Stage 3' AS "stages.MASTER", SUM(statisticofinterest_h_and_n) as statistic_of_interest FROM tumour_cohort_linked_h_and_n WHERE DIAGNOSISYEAR = '2017' AND SITE = 'Larynx including anterior surface of epiglottis' AND STAGE_1234X = 'Stage 3' AND SPLIT_60_70 = 'Age 70+' UNION ALL SELECT '2017' AS "Year", 'Larynx including anterior surface of epiglottis' AS "Tumour Type", 'All' AS "Age", 'Stage 4' AS "stages.MASTER", SUM(statisticofinterest_h_and_n) as statistic_of_interest FROM tumour_cohort_linked_h_and_n WHERE DIAGNOSISYEAR = '2017' AND SITE = 'Larynx including anterior surface of epiglottis' AND STAGE_1234X = 'Stage 4' UNION ALL SELECT '2017' AS "Year", 'Larynx including anterior surface of epiglottis' AS "Tumour Type", 'Age 00-59' AS "Age", 'Stage 4' AS "stages.MASTER", SUM(statisticofinterest_h_and_n) as statistic_of_interest FROM tumour_cohort_linked_h_and_n WHERE DIAGNOSISYEAR = '2017' AND SITE = 'Larynx including anterior surface of epiglottis' AND STAGE_1234X = 'Stage 4' AND SPLIT_60_70 = 'Age 00-59' UNION ALL SELECT '2017' AS "Year", 'Larynx including anterior surface of epiglottis' AS "Tumour Type", 'Age 60-69' AS "Age", 'Stage 4' AS "stages.MASTER", SUM(statisticofinterest_h_and_n) as statistic_of_interest FROM tumour_cohort_linked_h_and_n WHERE DIAGNOSISYEAR = '2017' AND SITE = 'Larynx including anterior surface of epiglottis' AND STAGE_1234X = 'Stage 4' AND SPLIT_60_70 = 'Age 60-69' UNION ALL SELECT '2017' AS "Year", 'Larynx including anterior surface of epiglottis' AS "Tumour Type", 'Age 70+' AS "Age", 'Stage 4' AS "stages.MASTER", SUM(statisticofinterest_h_and_n) as statistic_of_interest FROM tumour_cohort_linked_h_and_n WHERE DIAGNOSISYEAR = '2017' AND SITE = 'Larynx including anterior surface of epiglottis' AND STAGE_1234X = 'Stage 4' AND SPLIT_60_70 = 'Age 70+' UNION ALL SELECT '2017' AS "Year", 'Larynx including anterior surface of epiglottis' AS "Tumour Type", 'All' AS "Age", 'Stage unknown' AS "stages.MASTER", SUM(statisticofinterest_h_and_n) as statistic_of_interest FROM tumour_cohort_linked_h_and_n WHERE DIAGNOSISYEAR = '2017' AND SITE = 'Larynx including anterior surface of epiglottis' AND STAGE_1234X = 'Stage unknown' UNION ALL SELECT '2017' AS "Year", 'Larynx including anterior surface of epiglottis' AS "Tumour Type", 'Age 00-69' AS "Age", 'Stage unknown' AS "stages.MASTER", SUM(statisticofinterest_h_and_n) as statistic_of_interest FROM tumour_cohort_linked_h_and_n WHERE DIAGNOSISYEAR = '2017' AND SITE = 'Larynx including anterior surface of epiglottis' AND STAGE_1234X = 'Stage unknown' AND SPLIT_70 = 'Age 00-69' UNION ALL SELECT '2017' AS "Year", 'Larynx including anterior surface of epiglottis' AS "Tumour Type", 'Age 70+' AS "Age", 'Stage unknown' AS "stages.MASTER", SUM(statisticofinterest_h_and_n) as statistic_of_interest FROM tumour_cohort_linked_h_and_n WHERE DIAGNOSISYEAR = '2017' AND SITE = 'Larynx including anterior surface of epiglottis' AND STAGE_1234X = 'Stage unknown' AND SPLIT_70 = 'Age 70+' UNION ALL SELECT '2017' AS "Year", 'Major salivary glands' AS "Tumour Type", 'All' AS "Age", 'All' AS "stages.MASTER", SUM(statisticofinterest_h_and_n) as statistic_of_interest FROM tumour_cohort_linked_h_and_n WHERE DIAGNOSISYEAR = '2017' AND SITE = 'Major salivary glands' UNION ALL SELECT '2017' AS "Year", 'Major salivary glands' AS "Tumour Type", 'All' AS "Age", 'Stage 1-3' AS "stages.MASTER", SUM(statisticofinterest_h_and_n) as statistic_of_interest FROM tumour_cohort_linked_h_and_n WHERE DIAGNOSISYEAR = '2017' AND SITE = 'Major salivary glands' AND STAGE_SPLIT13 = 'Stage 1-3' UNION ALL SELECT '2017' AS "Year", 'Major salivary glands' AS "Tumour Type", 'All' AS "Age", 'Stage 4' AS "stages.MASTER", SUM(statisticofinterest_h_and_n) as statistic_of_interest FROM tumour_cohort_linked_h_and_n WHERE DIAGNOSISYEAR = '2017' AND SITE = 'Major salivary glands' AND STAGE_SPLIT13 = 'Stage 4' UNION ALL SELECT '2017' AS "Year", 'Major salivary glands' AS "Tumour Type", 'All' AS "Age", 'Stage unknown' AS "stages.MASTER", SUM(statisticofinterest_h_and_n) as statistic_of_interest FROM tumour_cohort_linked_h_and_n WHERE DIAGNOSISYEAR = '2017' AND SITE = 'Major salivary glands' AND STAGE_SPLIT13 = 'Stage unknown' UNION ALL SELECT '2017' AS "Year", 'Middle ear' AS "Tumour Type", 'All' AS "Age", 'All' AS "stages.MASTER", SUM(statisticofinterest_h_and_n) as statistic_of_interest FROM tumour_cohort_linked_h_and_n WHERE DIAGNOSISYEAR = '2017' AND SITE = 'Middle ear' UNION ALL SELECT '2017' AS "Year", 'Nasal cavity and sinus' AS "Tumour Type", 'All' AS "Age", 'All' AS "stages.MASTER", SUM(statisticofinterest_h_and_n) as statistic_of_interest FROM tumour_cohort_linked_h_and_n WHERE DIAGNOSISYEAR = '2017' AND SITE = 'Nasal cavity and sinus' UNION ALL SELECT '2017' AS "Year", 'Nasal cavity and sinus' AS "Tumour Type", 'All' AS "Age", 'Stage 1-2' AS "stages.MASTER", SUM(statisticofinterest_h_and_n) as statistic_of_interest FROM tumour_cohort_linked_h_and_n WHERE DIAGNOSISYEAR = '2017' AND SITE = 'Nasal cavity and sinus' AND STAGE_SPLIT2 = 'Stage 1-2' UNION ALL SELECT '2017' AS "Year", 'Nasal cavity and sinus' AS "Tumour Type", 'All' AS "Age", 'Stage 3-4' AS "stages.MASTER", SUM(statisticofinterest_h_and_n) as statistic_of_interest FROM tumour_cohort_linked_h_and_n WHERE DIAGNOSISYEAR = '2017' AND SITE = 'Nasal cavity and sinus' AND STAGE_SPLIT2 = 'Stage 3-4' UNION ALL SELECT '2017' AS "Year", 'Nasal cavity and sinus' AS "Tumour Type", 'All' AS "Age", 'Stage unknown' AS "stages.MASTER", SUM(statisticofinterest_h_and_n) as statistic_of_interest FROM tumour_cohort_linked_h_and_n WHERE DIAGNOSISYEAR = '2017' AND SITE = 'Nasal cavity and sinus' AND STAGE_SPLIT2 = 'Stage unknown' UNION ALL SELECT '2017' AS "Year", 'Nasopharynx' AS "Tumour Type", 'All' AS "Age", 'All' AS "stages.MASTER", SUM(statisticofinterest_h_and_n) as statistic_of_interest FROM tumour_cohort_linked_h_and_n WHERE DIAGNOSISYEAR = '2017' AND SITE = 'Nasopharynx' UNION ALL SELECT '2017' AS "Year", 'Oral cavity' AS "Tumour Type", 'All' AS "Age", 'All' AS "stages.MASTER", SUM(statisticofinterest_h_and_n) as statistic_of_interest FROM tumour_cohort_linked_h_and_n WHERE DIAGNOSISYEAR = '2017' AND SITE = 'Oral cavity' UNION ALL SELECT '2017' AS "Year", 'Oral cavity' AS "Tumour Type", 'All' AS "Age", 'Stage 1' AS "stages.MASTER", SUM(statisticofinterest_h_and_n) as statistic_of_interest FROM tumour_cohort_linked_h_and_n WHERE DIAGNOSISYEAR = '2017' AND SITE = 'Oral cavity' AND STAGE_1234X = 'Stage 1' UNION ALL SELECT '2017' AS "Year", 'Oral cavity' AS "Tumour Type", 'Age 00-59' AS "Age", 'Stage 1' AS "stages.MASTER", SUM(statisticofinterest_h_and_n) as statistic_of_interest FROM tumour_cohort_linked_h_and_n WHERE DIAGNOSISYEAR = '2017' AND SITE = 'Oral cavity' AND STAGE_1234X = 'Stage 1' AND SPLIT_60_70 = 'Age 00-59' UNION ALL SELECT '2017' AS "Year", 'Oral cavity' AS "Tumour Type", 'Age 60-69' AS "Age", 'Stage 1' AS "stages.MASTER", SUM(statisticofinterest_h_and_n) as statistic_of_interest FROM tumour_cohort_linked_h_and_n WHERE DIAGNOSISYEAR = '2017' AND SITE = 'Oral cavity' AND STAGE_1234X = 'Stage 1' AND SPLIT_60_70 = 'Age 60-69' UNION ALL SELECT '2017' AS "Year", 'Oral cavity' AS "Tumour Type", 'Age 70+' AS "Age", 'Stage 1' AS "stages.MASTER", SUM(statisticofinterest_h_and_n) as statistic_of_interest FROM tumour_cohort_linked_h_and_n WHERE DIAGNOSISYEAR = '2017' AND SITE = 'Oral cavity' AND STAGE_1234X = 'Stage 1' AND SPLIT_60_70 = 'Age 70+' UNION ALL SELECT '2017' AS "Year", 'Oral cavity' AS "Tumour Type", 'All' AS "Age", 'Stage 2' AS "stages.MASTER", SUM(statisticofinterest_h_and_n) as statistic_of_interest FROM tumour_cohort_linked_h_and_n WHERE DIAGNOSISYEAR = '2017' AND SITE = 'Oral cavity' AND STAGE_1234X = 'Stage 2' UNION ALL SELECT '2017' AS "Year", 'Oral cavity' AS "Tumour Type", 'Age 00-59' AS "Age", 'Stage 2' AS "stages.MASTER", SUM(statisticofinterest_h_and_n) as statistic_of_interest FROM tumour_cohort_linked_h_and_n WHERE DIAGNOSISYEAR = '2017' AND SITE = 'Oral cavity' AND STAGE_1234X = 'Stage 2' AND SPLIT_60_70 = 'Age 00-59' UNION ALL SELECT '2017' AS "Year", 'Oral cavity' AS "Tumour Type", 'Age 60-69' AS "Age", 'Stage 2' AS "stages.MASTER", SUM(statisticofinterest_h_and_n) as statistic_of_interest FROM tumour_cohort_linked_h_and_n WHERE DIAGNOSISYEAR = '2017' AND SITE = 'Oral cavity' AND STAGE_1234X = 'Stage 2' AND SPLIT_60_70 = 'Age 60-69' UNION ALL SELECT '2017' AS "Year", 'Oral cavity' AS "Tumour Type", 'Age 70+' AS "Age", 'Stage 2' AS "stages.MASTER", SUM(statisticofinterest_h_and_n) as statistic_of_interest FROM tumour_cohort_linked_h_and_n WHERE DIAGNOSISYEAR = '2017' AND SITE = 'Oral cavity' AND STAGE_1234X = 'Stage 2' AND SPLIT_60_70 = 'Age 70+' UNION ALL SELECT '2017' AS "Year", 'Oral cavity' AS "Tumour Type", 'All' AS "Age", 'Stage 3' AS "stages.MASTER", SUM(statisticofinterest_h_and_n) as statistic_of_interest FROM tumour_cohort_linked_h_and_n WHERE DIAGNOSISYEAR = '2017' AND SITE = 'Oral cavity' AND STAGE_1234X = 'Stage 3' UNION ALL SELECT '2017' AS "Year", 'Oral cavity' AS "Tumour Type", 'All' AS "Age", 'Stage 4' AS "stages.MASTER", SUM(statisticofinterest_h_and_n) as statistic_of_interest FROM tumour_cohort_linked_h_and_n WHERE DIAGNOSISYEAR = '2017' AND SITE = 'Oral cavity' AND STAGE_1234X = 'Stage 4' UNION ALL SELECT '2017' AS "Year", 'Oral cavity' AS "Tumour Type", 'Age 00-59' AS "Age", 'Stage 4' AS "stages.MASTER", SUM(statisticofinterest_h_and_n) as statistic_of_interest FROM tumour_cohort_linked_h_and_n WHERE DIAGNOSISYEAR = '2017' AND SITE = 'Oral cavity' AND STAGE_1234X = 'Stage 4' AND SPLIT_60_70 = 'Age 00-59' UNION ALL SELECT '2017' AS "Year", 'Oral cavity' AS "Tumour Type", 'Age 60-69' AS "Age", 'Stage 4' AS "stages.MASTER", SUM(statisticofinterest_h_and_n) as statistic_of_interest FROM tumour_cohort_linked_h_and_n WHERE DIAGNOSISYEAR = '2017' AND SITE = 'Oral cavity' AND STAGE_1234X = 'Stage 4' AND SPLIT_60_70 = 'Age 60-69' UNION ALL SELECT '2017' AS "Year", 'Oral cavity' AS "Tumour Type", 'Age 70+' AS "Age", 'Stage 4' AS "stages.MASTER", SUM(statisticofinterest_h_and_n) as statistic_of_interest FROM tumour_cohort_linked_h_and_n WHERE DIAGNOSISYEAR = '2017' AND SITE = 'Oral cavity' AND STAGE_1234X = 'Stage 4' AND SPLIT_60_70 = 'Age 70+' UNION ALL SELECT '2017' AS "Year", 'Oral cavity' AS "Tumour Type", 'All' AS "Age", 'Stage unknown' AS "stages.MASTER", SUM(statisticofinterest_h_and_n) as statistic_of_interest FROM tumour_cohort_linked_h_and_n WHERE DIAGNOSISYEAR = '2017' AND SITE = 'Oral cavity' AND STAGE_1234X = 'Stage unknown' UNION ALL SELECT '2017' AS "Year", 'Oral cavity' AS "Tumour Type", 'Age 00-69' AS "Age", 'Stage unknown' AS "stages.MASTER", SUM(statisticofinterest_h_and_n) as statistic_of_interest FROM tumour_cohort_linked_h_and_n WHERE DIAGNOSISYEAR = '2017' AND SITE = 'Oral cavity' AND STAGE_1234X = 'Stage unknown' AND SPLIT_70 = 'Age 00-69' UNION ALL SELECT '2017' AS "Year", 'Oral cavity' AS "Tumour Type", 'Age 70+' AS "Age", 'Stage unknown' AS "stages.MASTER", SUM(statisticofinterest_h_and_n) as statistic_of_interest FROM tumour_cohort_linked_h_and_n WHERE DIAGNOSISYEAR = '2017' AND SITE = 'Oral cavity' AND STAGE_1234X = 'Stage unknown' AND SPLIT_70 = 'Age 70+' UNION ALL SELECT '2017' AS "Year", 'Oropharynx including base of tongue, soft palate and tonsils' AS "Tumour Type", 'All' AS "Age", 'All' AS "stages.MASTER", SUM(statisticofinterest_h_and_n) as statistic_of_interest FROM tumour_cohort_linked_h_and_n WHERE DIAGNOSISYEAR = '2017' AND SITE = 'Oropharynx including base of tongue, soft palate and tonsils' UNION ALL SELECT '2017' AS "Year", 'Oropharynx including base of tongue, soft palate and tonsils' AS "Tumour Type", 'All' AS "Age", 'Stage 1' AS "stages.MASTER", SUM(statisticofinterest_h_and_n) as statistic_of_interest FROM tumour_cohort_linked_h_and_n WHERE DIAGNOSISYEAR = '2017' AND SITE = 'Oropharynx including base of tongue, soft palate and tonsils' AND STAGE_1234X = 'Stage 1' UNION ALL SELECT '2017' AS "Year", 'Oropharynx including base of tongue, soft palate and tonsils' AS "Tumour Type", 'All' AS "Age", 'Stage 2' AS "stages.MASTER", SUM(statisticofinterest_h_and_n) as statistic_of_interest FROM tumour_cohort_linked_h_and_n WHERE DIAGNOSISYEAR = '2017' AND SITE = 'Oropharynx including base of tongue, soft palate and tonsils' AND STAGE_1234X = 'Stage 2' UNION ALL SELECT '2017' AS "Year", 'Oropharynx including base of tongue, soft palate and tonsils' AS "Tumour Type", 'All' AS "Age", 'Stage 3' AS "stages.MASTER", SUM(statisticofinterest_h_and_n) as statistic_of_interest FROM tumour_cohort_linked_h_and_n WHERE DIAGNOSISYEAR = '2017' AND SITE = 'Oropharynx including base of tongue, soft palate and tonsils' AND STAGE_1234X = 'Stage 3' UNION ALL SELECT '2017' AS "Year", 'Oropharynx including base of tongue, soft palate and tonsils' AS "Tumour Type", 'Age 00-59' AS "Age", 'Stage 3' AS "stages.MASTER", SUM(statisticofinterest_h_and_n) as statistic_of_interest FROM tumour_cohort_linked_h_and_n WHERE DIAGNOSISYEAR = '2017' AND SITE = 'Oropharynx including base of tongue, soft palate and tonsils' AND STAGE_1234X = 'Stage 3' AND SPLIT_60 = 'Age 00-59' UNION ALL SELECT '2017' AS "Year", 'Oropharynx including base of tongue, soft palate and tonsils' AS "Tumour Type", 'Age 60+' AS "Age", 'Stage 3' AS "stages.MASTER", SUM(statisticofinterest_h_and_n) as statistic_of_interest FROM tumour_cohort_linked_h_and_n WHERE DIAGNOSISYEAR = '2017' AND SITE = 'Oropharynx including base of tongue, soft palate and tonsils' AND STAGE_1234X = 'Stage 3' AND SPLIT_60 = 'Age 60+' UNION ALL SELECT '2017' AS "Year", 'Oropharynx including base of tongue, soft palate and tonsils' AS "Tumour Type", 'All' AS "Age", 'Stage 4' AS "stages.MASTER", SUM(statisticofinterest_h_and_n) as statistic_of_interest FROM tumour_cohort_linked_h_and_n WHERE DIAGNOSISYEAR = '2017' AND SITE = 'Oropharynx including base of tongue, soft palate and tonsils' AND STAGE_1234X = 'Stage 4' UNION ALL SELECT '2017' AS "Year", 'Oropharynx including base of tongue, soft palate and tonsils' AS "Tumour Type", 'Age 00-49' AS "Age", 'Stage 4' AS "stages.MASTER", SUM(statisticofinterest_h_and_n) as statistic_of_interest FROM tumour_cohort_linked_h_and_n WHERE DIAGNOSISYEAR = '2017' AND SITE = 'Oropharynx including base of tongue, soft palate and tonsils' AND STAGE_1234X = 'Stage 4' AND SPLIT_50_TO_70 = 'Age 00-49' UNION ALL SELECT '2017' AS "Year", 'Oropharynx including base of tongue, soft palate and tonsils' AS "Tumour Type", 'Age 50-59' AS "Age", 'Stage 4' AS "stages.MASTER", SUM(statisticofinterest_h_and_n) as statistic_of_interest FROM tumour_cohort_linked_h_and_n WHERE DIAGNOSISYEAR = '2017' AND SITE = 'Oropharynx including base of tongue, soft palate and tonsils' AND STAGE_1234X = 'Stage 4' AND SPLIT_50_TO_70 = 'Age 50-59' UNION ALL SELECT '2017' AS "Year", 'Oropharynx including base of tongue, soft palate and tonsils' AS "Tumour Type", 'Age 60-69' AS "Age", 'Stage 4' AS "stages.MASTER", SUM(statisticofinterest_h_and_n) as statistic_of_interest FROM tumour_cohort_linked_h_and_n WHERE DIAGNOSISYEAR = '2017' AND SITE = 'Oropharynx including base of tongue, soft palate and tonsils' AND STAGE_1234X = 'Stage 4' AND SPLIT_50_TO_70 = 'Age 60-69' UNION ALL SELECT '2017' AS "Year", 'Oropharynx including base of tongue, soft palate and tonsils' AS "Tumour Type", 'Age 70+' AS "Age", 'Stage 4' AS "stages.MASTER", SUM(statisticofinterest_h_and_n) as statistic_of_interest FROM tumour_cohort_linked_h_and_n WHERE DIAGNOSISYEAR = '2017' AND SITE = 'Oropharynx including base of tongue, soft palate and tonsils' AND STAGE_1234X = 'Stage 4' AND SPLIT_50_TO_70 = 'Age 70+' UNION ALL SELECT '2017' AS "Year", 'Oropharynx including base of tongue, soft palate and tonsils' AS "Tumour Type", 'All' AS "Age", 'Stage unknown' AS "stages.MASTER", SUM(statisticofinterest_h_and_n) as statistic_of_interest FROM tumour_cohort_linked_h_and_n WHERE DIAGNOSISYEAR = '2017' AND SITE = 'Oropharynx including base of tongue, soft palate and tonsils' AND STAGE_1234X = 'Stage unknown' UNION ALL SELECT '2017' AS "Year", 'Oropharynx including base of tongue, soft palate and tonsils' AS "Tumour Type", 'Age 00-69' AS "Age", 'Stage unknown' AS "stages.MASTER", SUM(statisticofinterest_h_and_n) as statistic_of_interest FROM tumour_cohort_linked_h_and_n WHERE DIAGNOSISYEAR = '2017' AND SITE = 'Oropharynx including base of tongue, soft palate and tonsils' AND STAGE_1234X = 'Stage unknown' AND SPLIT_70 = 'Age 00-69' UNION ALL SELECT '2017' AS "Year", 'Oropharynx including base of tongue, soft palate and tonsils' AS "Tumour Type", 'Age 70+' AS "Age", 'Stage unknown' AS "stages.MASTER", SUM(statisticofinterest_h_and_n) as statistic_of_interest FROM tumour_cohort_linked_h_and_n WHERE DIAGNOSISYEAR = '2017' AND SITE = 'Oropharynx including base of tongue, soft palate and tonsils' AND STAGE_1234X = 'Stage unknown' AND SPLIT_70 = 'Age 70+' UNION ALL SELECT '2017' AS "Year", 'Other and ill-defined sites in the lip, oral cavity and pharynx' AS "Tumour Type", 'All' AS "Age", 'All' AS "stages.MASTER", SUM(statisticofinterest_h_and_n) as statistic_of_interest FROM tumour_cohort_linked_h_and_n WHERE DIAGNOSISYEAR = '2017' AND SITE = 'Other and ill-defined sites in the lip, oral cavity and pharynx' UNION ALL SELECT '2013-2015' AS "Year", 'All' AS "Tumour Type", 'All' AS "Age", 'All' AS "stages.MASTER", SUM(statisticofinterest_h_and_n) as statistic_of_interest FROM tumour_cohort_linked_h_and_n WHERE DIAGNOSISYEAR BETWEEN 2013 AND 2015 UNION ALL SELECT '2013-2015' AS "Year", 'External lip' AS "Tumour Type", 'All' AS "Age", 'All' AS "stages.MASTER", SUM(statisticofinterest_h_and_n) as statistic_of_interest FROM tumour_cohort_linked_h_and_n WHERE DIAGNOSISYEAR BETWEEN 2013 AND 2015 AND SITE = 'External lip' UNION ALL SELECT '2013-2015' AS "Year", 'Hypopharynx including piriform sinus' AS "Tumour Type", 'All' AS "Age", 'All' AS "stages.MASTER", SUM(statisticofinterest_h_and_n) as statistic_of_interest FROM tumour_cohort_linked_h_and_n WHERE DIAGNOSISYEAR BETWEEN 2013 AND 2015 AND SITE = 'Hypopharynx including piriform sinus' UNION ALL SELECT '2013-2015' AS "Year", 'Hypopharynx including piriform sinus' AS "Tumour Type", 'Age 00-59' AS "Age", 'All' AS "stages.MASTER", SUM(statisticofinterest_h_and_n) as statistic_of_interest FROM tumour_cohort_linked_h_and_n WHERE DIAGNOSISYEAR BETWEEN 2013 AND 2015 AND SITE = 'Hypopharynx including piriform sinus' AND SPLIT_60_70 = 'Age 00-59' UNION ALL SELECT '2013-2015' AS "Year", 'Hypopharynx including piriform sinus' AS "Tumour Type", 'Age 60-69' AS "Age", 'All' AS "stages.MASTER", SUM(statisticofinterest_h_and_n) as statistic_of_interest FROM tumour_cohort_linked_h_and_n WHERE DIAGNOSISYEAR BETWEEN 2013 AND 2015 AND SITE = 'Hypopharynx including piriform sinus' AND SPLIT_60_70 = 'Age 60-69' UNION ALL SELECT '2013-2015' AS "Year", 'Hypopharynx including piriform sinus' AS "Tumour Type", 'Age 70+' AS "Age", 'All' AS "stages.MASTER", SUM(statisticofinterest_h_and_n) as statistic_of_interest FROM tumour_cohort_linked_h_and_n WHERE DIAGNOSISYEAR BETWEEN 2013 AND 2015 AND SITE = 'Hypopharynx including piriform sinus' AND SPLIT_60_70 = 'Age 70+' UNION ALL SELECT '2013-2015' AS "Year", 'Larynx including anterior surface of epiglottis' AS "Tumour Type", 'All' AS "Age", 'All' AS "stages.MASTER", SUM(statisticofinterest_h_and_n) as statistic_of_interest FROM tumour_cohort_linked_h_and_n WHERE DIAGNOSISYEAR BETWEEN 2013 AND 2015 AND SITE = 'Larynx including anterior surface of epiglottis' UNION ALL SELECT '2013-2015' AS "Year", 'Larynx including anterior surface of epiglottis' AS "Tumour Type", 'All' AS "Age", 'Stage 1' AS "stages.MASTER", SUM(statisticofinterest_h_and_n) as statistic_of_interest FROM tumour_cohort_linked_h_and_n WHERE DIAGNOSISYEAR BETWEEN 2013 AND 2015 AND SITE = 'Larynx including anterior surface of epiglottis' AND STAGE_1234X = 'Stage 1' UNION ALL SELECT '2013-2015' AS "Year", 'Larynx including anterior surface of epiglottis' AS "Tumour Type", 'Age 00-59' AS "Age", 'Stage 1' AS "stages.MASTER", SUM(statisticofinterest_h_and_n) as statistic_of_interest FROM tumour_cohort_linked_h_and_n WHERE DIAGNOSISYEAR BETWEEN 2013 AND 2015 AND SITE = 'Larynx including anterior surface of epiglottis' AND STAGE_1234X = 'Stage 1' AND SPLIT_60_70 = 'Age 00-59' UNION ALL SELECT '2013-2015' AS "Year", 'Larynx including anterior surface of epiglottis' AS "Tumour Type", 'Age 60-69' AS "Age", 'Stage 1' AS "stages.MASTER", SUM(statisticofinterest_h_and_n) as statistic_of_interest FROM tumour_cohort_linked_h_and_n WHERE DIAGNOSISYEAR BETWEEN 2013 AND 2015 AND SITE = 'Larynx including anterior surface of epiglottis' AND STAGE_1234X = 'Stage 1' AND SPLIT_60_70 = 'Age 60-69' UNION ALL SELECT '2013-2015' AS "Year", 'Larynx including anterior surface of epiglottis' AS "Tumour Type", 'Age 70+' AS "Age", 'Stage 1' AS "stages.MASTER", SUM(statisticofinterest_h_and_n) as statistic_of_interest FROM tumour_cohort_linked_h_and_n WHERE DIAGNOSISYEAR BETWEEN 2013 AND 2015 AND SITE = 'Larynx including anterior surface of epiglottis' AND STAGE_1234X = 'Stage 1' AND SPLIT_60_70 = 'Age 70+' UNION ALL SELECT '2013-2015' AS "Year", 'Larynx including anterior surface of epiglottis' AS "Tumour Type", 'All' AS "Age", 'Stage 2' AS "stages.MASTER", SUM(statisticofinterest_h_and_n) as statistic_of_interest FROM tumour_cohort_linked_h_and_n WHERE DIAGNOSISYEAR BETWEEN 2013 AND 2015 AND SITE = 'Larynx including anterior surface of epiglottis' AND STAGE_1234X = 'Stage 2' UNION ALL SELECT '2013-2015' AS "Year", 'Larynx including anterior surface of epiglottis' AS "Tumour Type", 'Age 00-59' AS "Age", 'Stage 2' AS "stages.MASTER", SUM(statisticofinterest_h_and_n) as statistic_of_interest FROM tumour_cohort_linked_h_and_n WHERE DIAGNOSISYEAR BETWEEN 2013 AND 2015 AND SITE = 'Larynx including anterior surface of epiglottis' AND STAGE_1234X = 'Stage 2' AND SPLIT_60_70 = 'Age 00-59' UNION ALL SELECT '2013-2015' AS "Year", 'Larynx including anterior surface of epiglottis' AS "Tumour Type", 'Age 60-69' AS "Age", 'Stage 2' AS "stages.MASTER", SUM(statisticofinterest_h_and_n) as statistic_of_interest FROM tumour_cohort_linked_h_and_n WHERE DIAGNOSISYEAR BETWEEN 2013 AND 2015 AND SITE = 'Larynx including anterior surface of epiglottis' AND STAGE_1234X = 'Stage 2' AND SPLIT_60_70 = 'Age 60-69' UNION ALL SELECT '2013-2015' AS "Year", 'Larynx including anterior surface of epiglottis' AS "Tumour Type", 'Age 70+' AS "Age", 'Stage 2' AS "stages.MASTER", SUM(statisticofinterest_h_and_n) as statistic_of_interest FROM tumour_cohort_linked_h_and_n WHERE DIAGNOSISYEAR BETWEEN 2013 AND 2015 AND SITE = 'Larynx including anterior surface of epiglottis' AND STAGE_1234X = 'Stage 2' AND SPLIT_60_70 = 'Age 70+' UNION ALL SELECT '2013-2015' AS "Year", 'Larynx including anterior surface of epiglottis' AS "Tumour Type", 'All' AS "Age", 'Stage 3' AS "stages.MASTER", SUM(statisticofinterest_h_and_n) as statistic_of_interest FROM tumour_cohort_linked_h_and_n WHERE DIAGNOSISYEAR BETWEEN 2013 AND 2015 AND SITE = 'Larynx including anterior surface of epiglottis' AND STAGE_1234X = 'Stage 3' UNION ALL SELECT '2013-2015' AS "Year", 'Larynx including anterior surface of epiglottis' AS "Tumour Type", 'Age 00-59' AS "Age", 'Stage 3' AS "stages.MASTER", SUM(statisticofinterest_h_and_n) as statistic_of_interest FROM tumour_cohort_linked_h_and_n WHERE DIAGNOSISYEAR BETWEEN 2013 AND 2015 AND SITE = 'Larynx including anterior surface of epiglottis' AND STAGE_1234X = 'Stage 3' AND SPLIT_60_70 = 'Age 00-59' UNION ALL SELECT '2013-2015' AS "Year", 'Larynx including anterior surface of epiglottis' AS "Tumour Type", 'Age 60-69' AS "Age", 'Stage 3' AS "stages.MASTER", SUM(statisticofinterest_h_and_n) as statistic_of_interest FROM tumour_cohort_linked_h_and_n WHERE DIAGNOSISYEAR BETWEEN 2013 AND 2015 AND SITE = 'Larynx including anterior surface of epiglottis' AND STAGE_1234X = 'Stage 3' AND SPLIT_60_70 = 'Age 60-69' UNION ALL SELECT '2013-2015' AS "Year", 'Larynx including anterior surface of epiglottis' AS "Tumour Type", 'Age 70+' AS "Age", 'Stage 3' AS "stages.MASTER", SUM(statisticofinterest_h_and_n) as statistic_of_interest FROM tumour_cohort_linked_h_and_n WHERE DIAGNOSISYEAR BETWEEN 2013 AND 2015 AND SITE = 'Larynx including anterior surface of epiglottis' AND STAGE_1234X = 'Stage 3' AND SPLIT_60_70 = 'Age 70+' UNION ALL SELECT '2013-2015' AS "Year", 'Larynx including anterior surface of epiglottis' AS "Tumour Type", 'All' AS "Age", 'Stage 4' AS "stages.MASTER", SUM(statisticofinterest_h_and_n) as statistic_of_interest FROM tumour_cohort_linked_h_and_n WHERE DIAGNOSISYEAR BETWEEN 2013 AND 2015 AND SITE = 'Larynx including anterior surface of epiglottis' AND STAGE_1234X = 'Stage 4' UNION ALL SELECT '2013-2015' AS "Year", 'Larynx including anterior surface of epiglottis' AS "Tumour Type", 'Age 00-59' AS "Age", 'Stage 4' AS "stages.MASTER", SUM(statisticofinterest_h_and_n) as statistic_of_interest FROM tumour_cohort_linked_h_and_n WHERE DIAGNOSISYEAR BETWEEN 2013 AND 2015 AND SITE = 'Larynx including anterior surface of epiglottis' AND STAGE_1234X = 'Stage 4' AND SPLIT_60_70 = 'Age 00-59' UNION ALL SELECT '2013-2015' AS "Year", 'Larynx including anterior surface of epiglottis' AS "Tumour Type", 'Age 60-69' AS "Age", 'Stage 4' AS "stages.MASTER", SUM(statisticofinterest_h_and_n) as statistic_of_interest FROM tumour_cohort_linked_h_and_n WHERE DIAGNOSISYEAR BETWEEN 2013 AND 2015 AND SITE = 'Larynx including anterior surface of epiglottis' AND STAGE_1234X = 'Stage 4' AND SPLIT_60_70 = 'Age 60-69' UNION ALL SELECT '2013-2015' AS "Year", 'Larynx including anterior surface of epiglottis' AS "Tumour Type", 'Age 70+' AS "Age", 'Stage 4' AS "stages.MASTER", SUM(statisticofinterest_h_and_n) as statistic_of_interest FROM tumour_cohort_linked_h_and_n WHERE DIAGNOSISYEAR BETWEEN 2013 AND 2015 AND SITE = 'Larynx including anterior surface of epiglottis' AND STAGE_1234X = 'Stage 4' AND SPLIT_60_70 = 'Age 70+' UNION ALL SELECT '2013-2015' AS "Year", 'Larynx including anterior surface of epiglottis' AS "Tumour Type", 'All' AS "Age", 'Stage unknown' AS "stages.MASTER", SUM(statisticofinterest_h_and_n) as statistic_of_interest FROM tumour_cohort_linked_h_and_n WHERE DIAGNOSISYEAR BETWEEN 2013 AND 2015 AND SITE = 'Larynx including anterior surface of epiglottis' AND STAGE_1234X = 'Stage unknown' UNION ALL SELECT '2013-2015' AS "Year", 'Larynx including anterior surface of epiglottis' AS "Tumour Type", 'Age 00-69' AS "Age", 'Stage unknown' AS "stages.MASTER", SUM(statisticofinterest_h_and_n) as statistic_of_interest FROM tumour_cohort_linked_h_and_n WHERE DIAGNOSISYEAR BETWEEN 2013 AND 2015 AND SITE = 'Larynx including anterior surface of epiglottis' AND STAGE_1234X = 'Stage unknown' AND SPLIT_70 = 'Age 00-69' UNION ALL SELECT '2013-2015' AS "Year", 'Larynx including anterior surface of epiglottis' AS "Tumour Type", 'Age 70+' AS "Age", 'Stage unknown' AS "stages.MASTER", SUM(statisticofinterest_h_and_n) as statistic_of_interest FROM tumour_cohort_linked_h_and_n WHERE DIAGNOSISYEAR BETWEEN 2013 AND 2015 AND SITE = 'Larynx including anterior surface of epiglottis' AND STAGE_1234X = 'Stage unknown' AND SPLIT_70 = 'Age 70+' UNION ALL SELECT '2013-2015' AS "Year", 'Major salivary glands' AS "Tumour Type", 'All' AS "Age", 'All' AS "stages.MASTER", SUM(statisticofinterest_h_and_n) as statistic_of_interest FROM tumour_cohort_linked_h_and_n WHERE DIAGNOSISYEAR BETWEEN 2013 AND 2015 AND SITE = 'Major salivary glands' UNION ALL SELECT '2013-2015' AS "Year", 'Major salivary glands' AS "Tumour Type", 'All' AS "Age", 'Stage 1-3' AS "stages.MASTER", SUM(statisticofinterest_h_and_n) as statistic_of_interest FROM tumour_cohort_linked_h_and_n WHERE DIAGNOSISYEAR BETWEEN 2013 AND 2015 AND SITE = 'Major salivary glands' AND STAGE_SPLIT13 = 'Stage 1-3' UNION ALL SELECT '2013-2015' AS "Year", 'Major salivary glands' AS "Tumour Type", 'All' AS "Age", 'Stage 4' AS "stages.MASTER", SUM(statisticofinterest_h_and_n) as statistic_of_interest FROM tumour_cohort_linked_h_and_n WHERE DIAGNOSISYEAR BETWEEN 2013 AND 2015 AND SITE = 'Major salivary glands' AND STAGE_SPLIT13 = 'Stage 4' UNION ALL SELECT '2013-2015' AS "Year", 'Major salivary glands' AS "Tumour Type", 'All' AS "Age", 'Stage unknown' AS "stages.MASTER", SUM(statisticofinterest_h_and_n) as statistic_of_interest FROM tumour_cohort_linked_h_and_n WHERE DIAGNOSISYEAR BETWEEN 2013 AND 2015 AND SITE = 'Major salivary glands' AND STAGE_SPLIT13 = 'Stage unknown' UNION ALL SELECT '2013-2015' AS "Year", 'Middle ear' AS "Tumour Type", 'All' AS "Age", 'All' AS "stages.MASTER", SUM(statisticofinterest_h_and_n) as statistic_of_interest FROM tumour_cohort_linked_h_and_n WHERE DIAGNOSISYEAR BETWEEN 2013 AND 2015 AND SITE = 'Middle ear' UNION ALL SELECT '2013-2015' AS "Year", 'Nasal cavity and sinus' AS "Tumour Type", 'All' AS "Age", 'All' AS "stages.MASTER", SUM(statisticofinterest_h_and_n) as statistic_of_interest FROM tumour_cohort_linked_h_and_n WHERE DIAGNOSISYEAR BETWEEN 2013 AND 2015 AND SITE = 'Nasal cavity and sinus' UNION ALL SELECT '2013-2015' AS "Year", 'Nasal cavity and sinus' AS "Tumour Type", 'All' AS "Age", 'Stage 1-2' AS "stages.MASTER", SUM(statisticofinterest_h_and_n) as statistic_of_interest FROM tumour_cohort_linked_h_and_n WHERE DIAGNOSISYEAR BETWEEN 2013 AND 2015 AND SITE = 'Nasal cavity and sinus' AND STAGE_SPLIT2 = 'Stage 1-2' UNION ALL SELECT '2013-2015' AS "Year", 'Nasal cavity and sinus' AS "Tumour Type", 'All' AS "Age", 'Stage 3-4' AS "stages.MASTER", SUM(statisticofinterest_h_and_n) as statistic_of_interest FROM tumour_cohort_linked_h_and_n WHERE DIAGNOSISYEAR BETWEEN 2013 AND 2015 AND SITE = 'Nasal cavity and sinus' AND STAGE_SPLIT2 = 'Stage 3-4' UNION ALL SELECT '2013-2015' AS "Year", 'Nasal cavity and sinus' AS "Tumour Type", 'All' AS "Age", 'Stage unknown' AS "stages.MASTER", SUM(statisticofinterest_h_and_n) as statistic_of_interest FROM tumour_cohort_linked_h_and_n WHERE DIAGNOSISYEAR BETWEEN 2013 AND 2015 AND SITE = 'Nasal cavity and sinus' AND STAGE_SPLIT2 = 'Stage unknown' UNION ALL SELECT '2013-2015' AS "Year", 'Nasopharynx' AS "Tumour Type", 'All' AS "Age", 'All' AS "stages.MASTER", SUM(statisticofinterest_h_and_n) as statistic_of_interest FROM tumour_cohort_linked_h_and_n WHERE DIAGNOSISYEAR BETWEEN 2013 AND 2015 AND SITE = 'Nasopharynx' UNION ALL SELECT '2013-2015' AS "Year", 'Oral cavity' AS "Tumour Type", 'All' AS "Age", 'All' AS "stages.MASTER", SUM(statisticofinterest_h_and_n) as statistic_of_interest FROM tumour_cohort_linked_h_and_n WHERE DIAGNOSISYEAR BETWEEN 2013 AND 2015 AND SITE = 'Oral cavity' UNION ALL SELECT '2013-2015' AS "Year", 'Oral cavity' AS "Tumour Type", 'All' AS "Age", 'Stage 1' AS "stages.MASTER", SUM(statisticofinterest_h_and_n) as statistic_of_interest FROM tumour_cohort_linked_h_and_n WHERE DIAGNOSISYEAR BETWEEN 2013 AND 2015 AND SITE = 'Oral cavity' AND STAGE_1234X = 'Stage 1' UNION ALL SELECT '2013-2015' AS "Year", 'Oral cavity' AS "Tumour Type", 'Age 00-59' AS "Age", 'Stage 1' AS "stages.MASTER", SUM(statisticofinterest_h_and_n) as statistic_of_interest FROM tumour_cohort_linked_h_and_n WHERE DIAGNOSISYEAR BETWEEN 2013 AND 2015 AND SITE = 'Oral cavity' AND STAGE_1234X = 'Stage 1' AND SPLIT_60_70 = 'Age 00-59' UNION ALL SELECT '2013-2015' AS "Year", 'Oral cavity' AS "Tumour Type", 'Age 60-69' AS "Age", 'Stage 1' AS "stages.MASTER", SUM(statisticofinterest_h_and_n) as statistic_of_interest FROM tumour_cohort_linked_h_and_n WHERE DIAGNOSISYEAR BETWEEN 2013 AND 2015 AND SITE = 'Oral cavity' AND STAGE_1234X = 'Stage 1' AND SPLIT_60_70 = 'Age 60-69' UNION ALL SELECT '2013-2015' AS "Year", 'Oral cavity' AS "Tumour Type", 'Age 70+' AS "Age", 'Stage 1' AS "stages.MASTER", SUM(statisticofinterest_h_and_n) as statistic_of_interest FROM tumour_cohort_linked_h_and_n WHERE DIAGNOSISYEAR BETWEEN 2013 AND 2015 AND SITE = 'Oral cavity' AND STAGE_1234X = 'Stage 1' AND SPLIT_60_70 = 'Age 70+' UNION ALL SELECT '2013-2015' AS "Year", 'Oral cavity' AS "Tumour Type", 'All' AS "Age", 'Stage 2' AS "stages.MASTER", SUM(statisticofinterest_h_and_n) as statistic_of_interest FROM tumour_cohort_linked_h_and_n WHERE DIAGNOSISYEAR BETWEEN 2013 AND 2015 AND SITE = 'Oral cavity' AND STAGE_1234X = 'Stage 2' UNION ALL SELECT '2013-2015' AS "Year", 'Oral cavity' AS "Tumour Type", 'Age 00-59' AS "Age", 'Stage 2' AS "stages.MASTER", SUM(statisticofinterest_h_and_n) as statistic_of_interest FROM tumour_cohort_linked_h_and_n WHERE DIAGNOSISYEAR BETWEEN 2013 AND 2015 AND SITE = 'Oral cavity' AND STAGE_1234X = 'Stage 2' AND SPLIT_60_70 = 'Age 00-59' UNION ALL SELECT '2013-2015' AS "Year", 'Oral cavity' AS "Tumour Type", 'Age 60-69' AS "Age", 'Stage 2' AS "stages.MASTER", SUM(statisticofinterest_h_and_n) as statistic_of_interest FROM tumour_cohort_linked_h_and_n WHERE DIAGNOSISYEAR BETWEEN 2013 AND 2015 AND SITE = 'Oral cavity' AND STAGE_1234X = 'Stage 2' AND SPLIT_60_70 = 'Age 60-69' UNION ALL SELECT '2013-2015' AS "Year", 'Oral cavity' AS "Tumour Type", 'Age 70+' AS "Age", 'Stage 2' AS "stages.MASTER", SUM(statisticofinterest_h_and_n) as statistic_of_interest FROM tumour_cohort_linked_h_and_n WHERE DIAGNOSISYEAR BETWEEN 2013 AND 2015 AND SITE = 'Oral cavity' AND STAGE_1234X = 'Stage 2' AND SPLIT_60_70 = 'Age 70+' UNION ALL SELECT '2013-2015' AS "Year", 'Oral cavity' AS "Tumour Type", 'All' AS "Age", 'Stage 3' AS "stages.MASTER", SUM(statisticofinterest_h_and_n) as statistic_of_interest FROM tumour_cohort_linked_h_and_n WHERE DIAGNOSISYEAR BETWEEN 2013 AND 2015 AND SITE = 'Oral cavity' AND STAGE_1234X = 'Stage 3' UNION ALL SELECT '2013-2015' AS "Year", 'Oral cavity' AS "Tumour Type", 'All' AS "Age", 'Stage 4' AS "stages.MASTER", SUM(statisticofinterest_h_and_n) as statistic_of_interest FROM tumour_cohort_linked_h_and_n WHERE DIAGNOSISYEAR BETWEEN 2013 AND 2015 AND SITE = 'Oral cavity' AND STAGE_1234X = 'Stage 4' UNION ALL SELECT '2013-2015' AS "Year", 'Oral cavity' AS "Tumour Type", 'Age 00-59' AS "Age", 'Stage 4' AS "stages.MASTER", SUM(statisticofinterest_h_and_n) as statistic_of_interest FROM tumour_cohort_linked_h_and_n WHERE DIAGNOSISYEAR BETWEEN 2013 AND 2015 AND SITE = 'Oral cavity' AND STAGE_1234X = 'Stage 4' AND SPLIT_60_70 = 'Age 00-59' UNION ALL SELECT '2013-2015' AS "Year", 'Oral cavity' AS "Tumour Type", 'Age 60-69' AS "Age", 'Stage 4' AS "stages.MASTER", SUM(statisticofinterest_h_and_n) as statistic_of_interest FROM tumour_cohort_linked_h_and_n WHERE DIAGNOSISYEAR BETWEEN 2013 AND 2015 AND SITE = 'Oral cavity' AND STAGE_1234X = 'Stage 4' AND SPLIT_60_70 = 'Age 60-69' UNION ALL SELECT '2013-2015' AS "Year", 'Oral cavity' AS "Tumour Type", 'Age 70+' AS "Age", 'Stage 4' AS "stages.MASTER", SUM(statisticofinterest_h_and_n) as statistic_of_interest FROM tumour_cohort_linked_h_and_n WHERE DIAGNOSISYEAR BETWEEN 2013 AND 2015 AND SITE = 'Oral cavity' AND STAGE_1234X = 'Stage 4' AND SPLIT_60_70 = 'Age 70+' UNION ALL SELECT '2013-2015' AS "Year", 'Oral cavity' AS "Tumour Type", 'All' AS "Age", 'Stage unknown' AS "stages.MASTER", SUM(statisticofinterest_h_and_n) as statistic_of_interest FROM tumour_cohort_linked_h_and_n WHERE DIAGNOSISYEAR BETWEEN 2013 AND 2015 AND SITE = 'Oral cavity' AND STAGE_1234X = 'Stage unknown' UNION ALL SELECT '2013-2015' AS "Year", 'Oral cavity' AS "Tumour Type", 'Age 00-69' AS "Age", 'Stage unknown' AS "stages.MASTER", SUM(statisticofinterest_h_and_n) as statistic_of_interest FROM tumour_cohort_linked_h_and_n WHERE DIAGNOSISYEAR BETWEEN 2013 AND 2015 AND SITE = 'Oral cavity' AND STAGE_1234X = 'Stage unknown' AND SPLIT_70 = 'Age 00-69' UNION ALL SELECT '2013-2015' AS "Year", 'Oral cavity' AS "Tumour Type", 'Age 70+' AS "Age", 'Stage unknown' AS "stages.MASTER", SUM(statisticofinterest_h_and_n) as statistic_of_interest FROM tumour_cohort_linked_h_and_n WHERE DIAGNOSISYEAR BETWEEN 2013 AND 2015 AND SITE = 'Oral cavity' AND STAGE_1234X = 'Stage unknown' AND SPLIT_70 = 'Age 70+' UNION ALL SELECT '2013-2015' AS "Year", 'Oropharynx including base of tongue, soft palate and tonsils' AS "Tumour Type", 'All' AS "Age", 'All' AS "stages.MASTER", SUM(statisticofinterest_h_and_n) as statistic_of_interest FROM tumour_cohort_linked_h_and_n WHERE DIAGNOSISYEAR BETWEEN 2013 AND 2015 AND SITE = 'Oropharynx including base of tongue, soft palate and tonsils' UNION ALL SELECT '2013-2015' AS "Year", 'Oropharynx including base of tongue, soft palate and tonsils' AS "Tumour Type", 'All' AS "Age", 'Stage 1' AS "stages.MASTER", SUM(statisticofinterest_h_and_n) as statistic_of_interest FROM tumour_cohort_linked_h_and_n WHERE DIAGNOSISYEAR BETWEEN 2013 AND 2015 AND SITE = 'Oropharynx including base of tongue, soft palate and tonsils' AND STAGE_1234X = 'Stage 1' UNION ALL SELECT '2013-2015' AS "Year", 'Oropharynx including base of tongue, soft palate and tonsils' AS "Tumour Type", 'All' AS "Age", 'Stage 2' AS "stages.MASTER", SUM(statisticofinterest_h_and_n) as statistic_of_interest FROM tumour_cohort_linked_h_and_n WHERE DIAGNOSISYEAR BETWEEN 2013 AND 2015 AND SITE = 'Oropharynx including base of tongue, soft palate and tonsils' AND STAGE_1234X = 'Stage 2' UNION ALL SELECT '2013-2015' AS "Year", 'Oropharynx including base of tongue, soft palate and tonsils' AS "Tumour Type", 'All' AS "Age", 'Stage 3' AS "stages.MASTER", SUM(statisticofinterest_h_and_n) as statistic_of_interest FROM tumour_cohort_linked_h_and_n WHERE DIAGNOSISYEAR BETWEEN 2013 AND 2015 AND SITE = 'Oropharynx including base of tongue, soft palate and tonsils' AND STAGE_1234X = 'Stage 3' UNION ALL SELECT '2013-2015' AS "Year", 'Oropharynx including base of tongue, soft palate and tonsils' AS "Tumour Type", 'Age 00-59' AS "Age", 'Stage 3' AS "stages.MASTER", SUM(statisticofinterest_h_and_n) as statistic_of_interest FROM tumour_cohort_linked_h_and_n WHERE DIAGNOSISYEAR BETWEEN 2013 AND 2015 AND SITE = 'Oropharynx including base of tongue, soft palate and tonsils' AND STAGE_1234X = 'Stage 3' AND SPLIT_60 = 'Age 00-59' UNION ALL SELECT '2013-2015' AS "Year", 'Oropharynx including base of tongue, soft palate and tonsils' AS "Tumour Type", 'Age 60+' AS "Age", 'Stage 3' AS "stages.MASTER", SUM(statisticofinterest_h_and_n) as statistic_of_interest FROM tumour_cohort_linked_h_and_n WHERE DIAGNOSISYEAR BETWEEN 2013 AND 2015 AND SITE = 'Oropharynx including base of tongue, soft palate and tonsils' AND STAGE_1234X = 'Stage 3' AND SPLIT_60 = 'Age 60+' UNION ALL SELECT '2013-2015' AS "Year", 'Oropharynx including base of tongue, soft palate and tonsils' AS "Tumour Type", 'All' AS "Age", 'Stage 4' AS "stages.MASTER", SUM(statisticofinterest_h_and_n) as statistic_of_interest FROM tumour_cohort_linked_h_and_n WHERE DIAGNOSISYEAR BETWEEN 2013 AND 2015 AND SITE = 'Oropharynx including base of tongue, soft palate and tonsils' AND STAGE_1234X = 'Stage 4' UNION ALL SELECT '2013-2015' AS "Year", 'Oropharynx including base of tongue, soft palate and tonsils' AS "Tumour Type", 'Age 00-49' AS "Age", 'Stage 4' AS "stages.MASTER", SUM(statisticofinterest_h_and_n) as statistic_of_interest FROM tumour_cohort_linked_h_and_n WHERE DIAGNOSISYEAR BETWEEN 2013 AND 2015 AND SITE = 'Oropharynx including base of tongue, soft palate and tonsils' AND STAGE_1234X = 'Stage 4' AND SPLIT_50_TO_70 = 'Age 00-49' UNION ALL SELECT '2013-2015' AS "Year", 'Oropharynx including base of tongue, soft palate and tonsils' AS "Tumour Type", 'Age 50-59' AS "Age", 'Stage 4' AS "stages.MASTER", SUM(statisticofinterest_h_and_n) as statistic_of_interest FROM tumour_cohort_linked_h_and_n WHERE DIAGNOSISYEAR BETWEEN 2013 AND 2015 AND SITE = 'Oropharynx including base of tongue, soft palate and tonsils' AND STAGE_1234X = 'Stage 4' AND SPLIT_50_TO_70 = 'Age 50-59' UNION ALL SELECT '2013-2015' AS "Year", 'Oropharynx including base of tongue, soft palate and tonsils' AS "Tumour Type", 'Age 60-69' AS "Age", 'Stage 4' AS "stages.MASTER", SUM(statisticofinterest_h_and_n) as statistic_of_interest FROM tumour_cohort_linked_h_and_n WHERE DIAGNOSISYEAR BETWEEN 2013 AND 2015 AND SITE = 'Oropharynx including base of tongue, soft palate and tonsils' AND STAGE_1234X = 'Stage 4' AND SPLIT_50_TO_70 = 'Age 60-69' UNION ALL SELECT '2013-2015' AS "Year", 'Oropharynx including base of tongue, soft palate and tonsils' AS "Tumour Type", 'Age 70+' AS "Age", 'Stage 4' AS "stages.MASTER", SUM(statisticofinterest_h_and_n) as statistic_of_interest FROM tumour_cohort_linked_h_and_n WHERE DIAGNOSISYEAR BETWEEN 2013 AND 2015 AND SITE = 'Oropharynx including base of tongue, soft palate and tonsils' AND STAGE_1234X = 'Stage 4' AND SPLIT_50_TO_70 = 'Age 70+' UNION ALL SELECT '2013-2015' AS "Year", 'Oropharynx including base of tongue, soft palate and tonsils' AS "Tumour Type", 'All' AS "Age", 'Stage unknown' AS "stages.MASTER", SUM(statisticofinterest_h_and_n) as statistic_of_interest FROM tumour_cohort_linked_h_and_n WHERE DIAGNOSISYEAR BETWEEN 2013 AND 2015 AND SITE = 'Oropharynx including base of tongue, soft palate and tonsils' AND STAGE_1234X = 'Stage unknown' UNION ALL SELECT '2013-2015' AS "Year", 'Oropharynx including base of tongue, soft palate and tonsils' AS "Tumour Type", 'Age 00-69' AS "Age", 'Stage unknown' AS "stages.MASTER", SUM(statisticofinterest_h_and_n) as statistic_of_interest FROM tumour_cohort_linked_h_and_n WHERE DIAGNOSISYEAR BETWEEN 2013 AND 2015 AND SITE = 'Oropharynx including base of tongue, soft palate and tonsils' AND STAGE_1234X = 'Stage unknown' AND SPLIT_70 = 'Age 00-69' UNION ALL SELECT '2013-2015' AS "Year", 'Oropharynx including base of tongue, soft palate and tonsils' AS "Tumour Type", 'Age 70+' AS "Age", 'Stage unknown' AS "stages.MASTER", SUM(statisticofinterest_h_and_n) as statistic_of_interest FROM tumour_cohort_linked_h_and_n WHERE DIAGNOSISYEAR BETWEEN 2013 AND 2015 AND SITE = 'Oropharynx including base of tongue, soft palate and tonsils' AND STAGE_1234X = 'Stage unknown' AND SPLIT_70 = 'Age 70+' UNION ALL SELECT '2013-2015' AS "Year", 'Other and ill-defined sites in the lip, oral cavity and pharynx' AS "Tumour Type", 'All' AS "Age", 'All' AS "stages.MASTER", SUM(statisticofinterest_h_and_n) as statistic_of_interest FROM tumour_cohort_linked_h_and_n WHERE DIAGNOSISYEAR BETWEEN 2013 AND 2015 AND SITE = 'Other and ill-defined sites in the lip, oral cavity and pharynx' UNION ALL SELECT '2014-2016' AS "Year", 'All' AS "Tumour Type", 'All' AS "Age", 'All' AS "stages.MASTER", SUM(statisticofinterest_h_and_n) as statistic_of_interest FROM tumour_cohort_linked_h_and_n WHERE DIAGNOSISYEAR BETWEEN 2014 AND 2016 UNION ALL SELECT '2014-2016' AS "Year", 'External lip' AS "Tumour Type", 'All' AS "Age", 'All' AS "stages.MASTER", SUM(statisticofinterest_h_and_n) as statistic_of_interest FROM tumour_cohort_linked_h_and_n WHERE DIAGNOSISYEAR BETWEEN 2014 AND 2016 AND SITE = 'External lip' UNION ALL SELECT '2014-2016' AS "Year", 'Hypopharynx including piriform sinus' AS "Tumour Type", 'All' AS "Age", 'All' AS "stages.MASTER", SUM(statisticofinterest_h_and_n) as statistic_of_interest FROM tumour_cohort_linked_h_and_n WHERE DIAGNOSISYEAR BETWEEN 2014 AND 2016 AND SITE = 'Hypopharynx including piriform sinus' UNION ALL SELECT '2014-2016' AS "Year", 'Hypopharynx including piriform sinus' AS "Tumour Type", 'Age 00-59' AS "Age", 'All' AS "stages.MASTER", SUM(statisticofinterest_h_and_n) as statistic_of_interest FROM tumour_cohort_linked_h_and_n WHERE DIAGNOSISYEAR BETWEEN 2014 AND 2016 AND SITE = 'Hypopharynx including piriform sinus' AND SPLIT_60_70 = 'Age 00-59' UNION ALL SELECT '2014-2016' AS "Year", 'Hypopharynx including piriform sinus' AS "Tumour Type", 'Age 60-69' AS "Age", 'All' AS "stages.MASTER", SUM(statisticofinterest_h_and_n) as statistic_of_interest FROM tumour_cohort_linked_h_and_n WHERE DIAGNOSISYEAR BETWEEN 2014 AND 2016 AND SITE = 'Hypopharynx including piriform sinus' AND SPLIT_60_70 = 'Age 60-69' UNION ALL SELECT '2014-2016' AS "Year", 'Hypopharynx including piriform sinus' AS "Tumour Type", 'Age 70+' AS "Age", 'All' AS "stages.MASTER", SUM(statisticofinterest_h_and_n) as statistic_of_interest FROM tumour_cohort_linked_h_and_n WHERE DIAGNOSISYEAR BETWEEN 2014 AND 2016 AND SITE = 'Hypopharynx including piriform sinus' AND SPLIT_60_70 = 'Age 70+' UNION ALL SELECT '2014-2016' AS "Year", 'Larynx including anterior surface of epiglottis' AS "Tumour Type", 'All' AS "Age", 'All' AS "stages.MASTER", SUM(statisticofinterest_h_and_n) as statistic_of_interest FROM tumour_cohort_linked_h_and_n WHERE DIAGNOSISYEAR BETWEEN 2014 AND 2016 AND SITE = 'Larynx including anterior surface of epiglottis' UNION ALL SELECT '2014-2016' AS "Year", 'Larynx including anterior surface of epiglottis' AS "Tumour Type", 'All' AS "Age", 'Stage 1' AS "stages.MASTER", SUM(statisticofinterest_h_and_n) as statistic_of_interest FROM tumour_cohort_linked_h_and_n WHERE DIAGNOSISYEAR BETWEEN 2014 AND 2016 AND SITE = 'Larynx including anterior surface of epiglottis' AND STAGE_1234X = 'Stage 1' UNION ALL SELECT '2014-2016' AS "Year", 'Larynx including anterior surface of epiglottis' AS "Tumour Type", 'Age 00-59' AS "Age", 'Stage 1' AS "stages.MASTER", SUM(statisticofinterest_h_and_n) as statistic_of_interest FROM tumour_cohort_linked_h_and_n WHERE DIAGNOSISYEAR BETWEEN 2014 AND 2016 AND SITE = 'Larynx including anterior surface of epiglottis' AND STAGE_1234X = 'Stage 1' AND SPLIT_60_70 = 'Age 00-59' UNION ALL SELECT '2014-2016' AS "Year", 'Larynx including anterior surface of epiglottis' AS "Tumour Type", 'Age 60-69' AS "Age", 'Stage 1' AS "stages.MASTER", SUM(statisticofinterest_h_and_n) as statistic_of_interest FROM tumour_cohort_linked_h_and_n WHERE DIAGNOSISYEAR BETWEEN 2014 AND 2016 AND SITE = 'Larynx including anterior surface of epiglottis' AND STAGE_1234X = 'Stage 1' AND SPLIT_60_70 = 'Age 60-69' UNION ALL SELECT '2014-2016' AS "Year", 'Larynx including anterior surface of epiglottis' AS "Tumour Type", 'Age 70+' AS "Age", 'Stage 1' AS "stages.MASTER", SUM(statisticofinterest_h_and_n) as statistic_of_interest FROM tumour_cohort_linked_h_and_n WHERE DIAGNOSISYEAR BETWEEN 2014 AND 2016 AND SITE = 'Larynx including anterior surface of epiglottis' AND STAGE_1234X = 'Stage 1' AND SPLIT_60_70 = 'Age 70+' UNION ALL SELECT '2014-2016' AS "Year", 'Larynx including anterior surface of epiglottis' AS "Tumour Type", 'All' AS "Age", 'Stage 2' AS "stages.MASTER", SUM(statisticofinterest_h_and_n) as statistic_of_interest FROM tumour_cohort_linked_h_and_n WHERE DIAGNOSISYEAR BETWEEN 2014 AND 2016 AND SITE = 'Larynx including anterior surface of epiglottis' AND STAGE_1234X = 'Stage 2' UNION ALL SELECT '2014-2016' AS "Year", 'Larynx including anterior surface of epiglottis' AS "Tumour Type", 'Age 00-59' AS "Age", 'Stage 2' AS "stages.MASTER", SUM(statisticofinterest_h_and_n) as statistic_of_interest FROM tumour_cohort_linked_h_and_n WHERE DIAGNOSISYEAR BETWEEN 2014 AND 2016 AND SITE = 'Larynx including anterior surface of epiglottis' AND STAGE_1234X = 'Stage 2' AND SPLIT_60_70 = 'Age 00-59' UNION ALL SELECT '2014-2016' AS "Year", 'Larynx including anterior surface of epiglottis' AS "Tumour Type", 'Age 60-69' AS "Age", 'Stage 2' AS "stages.MASTER", SUM(statisticofinterest_h_and_n) as statistic_of_interest FROM tumour_cohort_linked_h_and_n WHERE DIAGNOSISYEAR BETWEEN 2014 AND 2016 AND SITE = 'Larynx including anterior surface of epiglottis' AND STAGE_1234X = 'Stage 2' AND SPLIT_60_70 = 'Age 60-69' UNION ALL SELECT '2014-2016' AS "Year", 'Larynx including anterior surface of epiglottis' AS "Tumour Type", 'Age 70+' AS "Age", 'Stage 2' AS "stages.MASTER", SUM(statisticofinterest_h_and_n) as statistic_of_interest FROM tumour_cohort_linked_h_and_n WHERE DIAGNOSISYEAR BETWEEN 2014 AND 2016 AND SITE = 'Larynx including anterior surface of epiglottis' AND STAGE_1234X = 'Stage 2' AND SPLIT_60_70 = 'Age 70+' UNION ALL SELECT '2014-2016' AS "Year", 'Larynx including anterior surface of epiglottis' AS "Tumour Type", 'All' AS "Age", 'Stage 3' AS "stages.MASTER", SUM(statisticofinterest_h_and_n) as statistic_of_interest FROM tumour_cohort_linked_h_and_n WHERE DIAGNOSISYEAR BETWEEN 2014 AND 2016 AND SITE = 'Larynx including anterior surface of epiglottis' AND STAGE_1234X = 'Stage 3' UNION ALL SELECT '2014-2016' AS "Year", 'Larynx including anterior surface of epiglottis' AS "Tumour Type", 'Age 00-59' AS "Age", 'Stage 3' AS "stages.MASTER", SUM(statisticofinterest_h_and_n) as statistic_of_interest FROM tumour_cohort_linked_h_and_n WHERE DIAGNOSISYEAR BETWEEN 2014 AND 2016 AND SITE = 'Larynx including anterior surface of epiglottis' AND STAGE_1234X = 'Stage 3' AND SPLIT_60_70 = 'Age 00-59' UNION ALL SELECT '2014-2016' AS "Year", 'Larynx including anterior surface of epiglottis' AS "Tumour Type", 'Age 60-69' AS "Age", 'Stage 3' AS "stages.MASTER", SUM(statisticofinterest_h_and_n) as statistic_of_interest FROM tumour_cohort_linked_h_and_n WHERE DIAGNOSISYEAR BETWEEN 2014 AND 2016 AND SITE = 'Larynx including anterior surface of epiglottis' AND STAGE_1234X = 'Stage 3' AND SPLIT_60_70 = 'Age 60-69' UNION ALL SELECT '2014-2016' AS "Year", 'Larynx including anterior surface of epiglottis' AS "Tumour Type", 'Age 70+' AS "Age", 'Stage 3' AS "stages.MASTER", SUM(statisticofinterest_h_and_n) as statistic_of_interest FROM tumour_cohort_linked_h_and_n WHERE DIAGNOSISYEAR BETWEEN 2014 AND 2016 AND SITE = 'Larynx including anterior surface of epiglottis' AND STAGE_1234X = 'Stage 3' AND SPLIT_60_70 = 'Age 70+' UNION ALL SELECT '2014-2016' AS "Year", 'Larynx including anterior surface of epiglottis' AS "Tumour Type", 'All' AS "Age", 'Stage 4' AS "stages.MASTER", SUM(statisticofinterest_h_and_n) as statistic_of_interest FROM tumour_cohort_linked_h_and_n WHERE DIAGNOSISYEAR BETWEEN 2014 AND 2016 AND SITE = 'Larynx including anterior surface of epiglottis' AND STAGE_1234X = 'Stage 4' UNION ALL SELECT '2014-2016' AS "Year", 'Larynx including anterior surface of epiglottis' AS "Tumour Type", 'Age 00-59' AS "Age", 'Stage 4' AS "stages.MASTER", SUM(statisticofinterest_h_and_n) as statistic_of_interest FROM tumour_cohort_linked_h_and_n WHERE DIAGNOSISYEAR BETWEEN 2014 AND 2016 AND SITE = 'Larynx including anterior surface of epiglottis' AND STAGE_1234X = 'Stage 4' AND SPLIT_60_70 = 'Age 00-59' UNION ALL SELECT '2014-2016' AS "Year", 'Larynx including anterior surface of epiglottis' AS "Tumour Type", 'Age 60-69' AS "Age", 'Stage 4' AS "stages.MASTER", SUM(statisticofinterest_h_and_n) as statistic_of_interest FROM tumour_cohort_linked_h_and_n WHERE DIAGNOSISYEAR BETWEEN 2014 AND 2016 AND SITE = 'Larynx including anterior surface of epiglottis' AND STAGE_1234X = 'Stage 4' AND SPLIT_60_70 = 'Age 60-69' UNION ALL SELECT '2014-2016' AS "Year", 'Larynx including anterior surface of epiglottis' AS "Tumour Type", 'Age 70+' AS "Age", 'Stage 4' AS "stages.MASTER", SUM(statisticofinterest_h_and_n) as statistic_of_interest FROM tumour_cohort_linked_h_and_n WHERE DIAGNOSISYEAR BETWEEN 2014 AND 2016 AND SITE = 'Larynx including anterior surface of epiglottis' AND STAGE_1234X = 'Stage 4' AND SPLIT_60_70 = 'Age 70+' UNION ALL SELECT '2014-2016' AS "Year", 'Larynx including anterior surface of epiglottis' AS "Tumour Type", 'All' AS "Age", 'Stage unknown' AS "stages.MASTER", SUM(statisticofinterest_h_and_n) as statistic_of_interest FROM tumour_cohort_linked_h_and_n WHERE DIAGNOSISYEAR BETWEEN 2014 AND 2016 AND SITE = 'Larynx including anterior surface of epiglottis' AND STAGE_1234X = 'Stage unknown' UNION ALL SELECT '2014-2016' AS "Year", 'Larynx including anterior surface of epiglottis' AS "Tumour Type", 'Age 00-69' AS "Age", 'Stage unknown' AS "stages.MASTER", SUM(statisticofinterest_h_and_n) as statistic_of_interest FROM tumour_cohort_linked_h_and_n WHERE DIAGNOSISYEAR BETWEEN 2014 AND 2016 AND SITE = 'Larynx including anterior surface of epiglottis' AND STAGE_1234X = 'Stage unknown' AND SPLIT_70 = 'Age 00-69' UNION ALL SELECT '2014-2016' AS "Year", 'Larynx including anterior surface of epiglottis' AS "Tumour Type", 'Age 70+' AS "Age", 'Stage unknown' AS "stages.MASTER", SUM(statisticofinterest_h_and_n) as statistic_of_interest FROM tumour_cohort_linked_h_and_n WHERE DIAGNOSISYEAR BETWEEN 2014 AND 2016 AND SITE = 'Larynx including anterior surface of epiglottis' AND STAGE_1234X = 'Stage unknown' AND SPLIT_70 = 'Age 70+' UNION ALL SELECT '2014-2016' AS "Year", 'Major salivary glands' AS "Tumour Type", 'All' AS "Age", 'All' AS "stages.MASTER", SUM(statisticofinterest_h_and_n) as statistic_of_interest FROM tumour_cohort_linked_h_and_n WHERE DIAGNOSISYEAR BETWEEN 2014 AND 2016 AND SITE = 'Major salivary glands' UNION ALL SELECT '2014-2016' AS "Year", 'Major salivary glands' AS "Tumour Type", 'All' AS "Age", 'Stage 1-3' AS "stages.MASTER", SUM(statisticofinterest_h_and_n) as statistic_of_interest FROM tumour_cohort_linked_h_and_n WHERE DIAGNOSISYEAR BETWEEN 2014 AND 2016 AND SITE = 'Major salivary glands' AND STAGE_SPLIT13 = 'Stage 1-3' UNION ALL SELECT '2014-2016' AS "Year", 'Major salivary glands' AS "Tumour Type", 'All' AS "Age", 'Stage 4' AS "stages.MASTER", SUM(statisticofinterest_h_and_n) as statistic_of_interest FROM tumour_cohort_linked_h_and_n WHERE DIAGNOSISYEAR BETWEEN 2014 AND 2016 AND SITE = 'Major salivary glands' AND STAGE_SPLIT13 = 'Stage 4' UNION ALL SELECT '2014-2016' AS "Year", 'Major salivary glands' AS "Tumour Type", 'All' AS "Age", 'Stage unknown' AS "stages.MASTER", SUM(statisticofinterest_h_and_n) as statistic_of_interest FROM tumour_cohort_linked_h_and_n WHERE DIAGNOSISYEAR BETWEEN 2014 AND 2016 AND SITE = 'Major salivary glands' AND STAGE_SPLIT13 = 'Stage unknown' UNION ALL SELECT '2014-2016' AS "Year", 'Middle ear' AS "Tumour Type", 'All' AS "Age", 'All' AS "stages.MASTER", SUM(statisticofinterest_h_and_n) as statistic_of_interest FROM tumour_cohort_linked_h_and_n WHERE DIAGNOSISYEAR BETWEEN 2014 AND 2016 AND SITE = 'Middle ear' UNION ALL SELECT '2014-2016' AS "Year", 'Nasal cavity and sinus' AS "Tumour Type", 'All' AS "Age", 'All' AS "stages.MASTER", SUM(statisticofinterest_h_and_n) as statistic_of_interest FROM tumour_cohort_linked_h_and_n WHERE DIAGNOSISYEAR BETWEEN 2014 AND 2016 AND SITE = 'Nasal cavity and sinus' UNION ALL SELECT '2014-2016' AS "Year", 'Nasal cavity and sinus' AS "Tumour Type", 'All' AS "Age", 'Stage 1-2' AS "stages.MASTER", SUM(statisticofinterest_h_and_n) as statistic_of_interest FROM tumour_cohort_linked_h_and_n WHERE DIAGNOSISYEAR BETWEEN 2014 AND 2016 AND SITE = 'Nasal cavity and sinus' AND STAGE_SPLIT2 = 'Stage 1-2' UNION ALL SELECT '2014-2016' AS "Year", 'Nasal cavity and sinus' AS "Tumour Type", 'All' AS "Age", 'Stage 3-4' AS "stages.MASTER", SUM(statisticofinterest_h_and_n) as statistic_of_interest FROM tumour_cohort_linked_h_and_n WHERE DIAGNOSISYEAR BETWEEN 2014 AND 2016 AND SITE = 'Nasal cavity and sinus' AND STAGE_SPLIT2 = 'Stage 3-4' UNION ALL SELECT '2014-2016' AS "Year", 'Nasal cavity and sinus' AS "Tumour Type", 'All' AS "Age", 'Stage unknown' AS "stages.MASTER", SUM(statisticofinterest_h_and_n) as statistic_of_interest FROM tumour_cohort_linked_h_and_n WHERE DIAGNOSISYEAR BETWEEN 2014 AND 2016 AND SITE = 'Nasal cavity and sinus' AND STAGE_SPLIT2 = 'Stage unknown' UNION ALL SELECT '2014-2016' AS "Year", 'Nasopharynx' AS "Tumour Type", 'All' AS "Age", 'All' AS "stages.MASTER", SUM(statisticofinterest_h_and_n) as statistic_of_interest FROM tumour_cohort_linked_h_and_n WHERE DIAGNOSISYEAR BETWEEN 2014 AND 2016 AND SITE = 'Nasopharynx' UNION ALL SELECT '2014-2016' AS "Year", 'Oral cavity' AS "Tumour Type", 'All' AS "Age", 'All' AS "stages.MASTER", SUM(statisticofinterest_h_and_n) as statistic_of_interest FROM tumour_cohort_linked_h_and_n WHERE DIAGNOSISYEAR BETWEEN 2014 AND 2016 AND SITE = 'Oral cavity' UNION ALL SELECT '2014-2016' AS "Year", 'Oral cavity' AS "Tumour Type", 'All' AS "Age", 'Stage 1' AS "stages.MASTER", SUM(statisticofinterest_h_and_n) as statistic_of_interest FROM tumour_cohort_linked_h_and_n WHERE DIAGNOSISYEAR BETWEEN 2014 AND 2016 AND SITE = 'Oral cavity' AND STAGE_1234X = 'Stage 1' UNION ALL SELECT '2014-2016' AS "Year", 'Oral cavity' AS "Tumour Type", 'Age 00-59' AS "Age", 'Stage 1' AS "stages.MASTER", SUM(statisticofinterest_h_and_n) as statistic_of_interest FROM tumour_cohort_linked_h_and_n WHERE DIAGNOSISYEAR BETWEEN 2014 AND 2016 AND SITE = 'Oral cavity' AND STAGE_1234X = 'Stage 1' AND SPLIT_60_70 = 'Age 00-59' UNION ALL SELECT '2014-2016' AS "Year", 'Oral cavity' AS "Tumour Type", 'Age 60-69' AS "Age", 'Stage 1' AS "stages.MASTER", SUM(statisticofinterest_h_and_n) as statistic_of_interest FROM tumour_cohort_linked_h_and_n WHERE DIAGNOSISYEAR BETWEEN 2014 AND 2016 AND SITE = 'Oral cavity' AND STAGE_1234X = 'Stage 1' AND SPLIT_60_70 = 'Age 60-69' UNION ALL SELECT '2014-2016' AS "Year", 'Oral cavity' AS "Tumour Type", 'Age 70+' AS "Age", 'Stage 1' AS "stages.MASTER", SUM(statisticofinterest_h_and_n) as statistic_of_interest FROM tumour_cohort_linked_h_and_n WHERE DIAGNOSISYEAR BETWEEN 2014 AND 2016 AND SITE = 'Oral cavity' AND STAGE_1234X = 'Stage 1' AND SPLIT_60_70 = 'Age 70+' UNION ALL SELECT '2014-2016' AS "Year", 'Oral cavity' AS "Tumour Type", 'All' AS "Age", 'Stage 2' AS "stages.MASTER", SUM(statisticofinterest_h_and_n) as statistic_of_interest FROM tumour_cohort_linked_h_and_n WHERE DIAGNOSISYEAR BETWEEN 2014 AND 2016 AND SITE = 'Oral cavity' AND STAGE_1234X = 'Stage 2' UNION ALL SELECT '2014-2016' AS "Year", 'Oral cavity' AS "Tumour Type", 'Age 00-59' AS "Age", 'Stage 2' AS "stages.MASTER", SUM(statisticofinterest_h_and_n) as statistic_of_interest FROM tumour_cohort_linked_h_and_n WHERE DIAGNOSISYEAR BETWEEN 2014 AND 2016 AND SITE = 'Oral cavity' AND STAGE_1234X = 'Stage 2' AND SPLIT_60_70 = 'Age 00-59' UNION ALL SELECT '2014-2016' AS "Year", 'Oral cavity' AS "Tumour Type", 'Age 60-69' AS "Age", 'Stage 2' AS "stages.MASTER", SUM(statisticofinterest_h_and_n) as statistic_of_interest FROM tumour_cohort_linked_h_and_n WHERE DIAGNOSISYEAR BETWEEN 2014 AND 2016 AND SITE = 'Oral cavity' AND STAGE_1234X = 'Stage 2' AND SPLIT_60_70 = 'Age 60-69' UNION ALL SELECT '2014-2016' AS "Year", 'Oral cavity' AS "Tumour Type", 'Age 70+' AS "Age", 'Stage 2' AS "stages.MASTER", SUM(statisticofinterest_h_and_n) as statistic_of_interest FROM tumour_cohort_linked_h_and_n WHERE DIAGNOSISYEAR BETWEEN 2014 AND 2016 AND SITE = 'Oral cavity' AND STAGE_1234X = 'Stage 2' AND SPLIT_60_70 = 'Age 70+' UNION ALL SELECT '2014-2016' AS "Year", 'Oral cavity' AS "Tumour Type", 'All' AS "Age", 'Stage 3' AS "stages.MASTER", SUM(statisticofinterest_h_and_n) as statistic_of_interest FROM tumour_cohort_linked_h_and_n WHERE DIAGNOSISYEAR BETWEEN 2014 AND 2016 AND SITE = 'Oral cavity' AND STAGE_1234X = 'Stage 3' UNION ALL SELECT '2014-2016' AS "Year", 'Oral cavity' AS "Tumour Type", 'All' AS "Age", 'Stage 4' AS "stages.MASTER", SUM(statisticofinterest_h_and_n) as statistic_of_interest FROM tumour_cohort_linked_h_and_n WHERE DIAGNOSISYEAR BETWEEN 2014 AND 2016 AND SITE = 'Oral cavity' AND STAGE_1234X = 'Stage 4' UNION ALL SELECT '2014-2016' AS "Year", 'Oral cavity' AS "Tumour Type", 'Age 00-59' AS "Age", 'Stage 4' AS "stages.MASTER", SUM(statisticofinterest_h_and_n) as statistic_of_interest FROM tumour_cohort_linked_h_and_n WHERE DIAGNOSISYEAR BETWEEN 2014 AND 2016 AND SITE = 'Oral cavity' AND STAGE_1234X = 'Stage 4' AND SPLIT_60_70 = 'Age 00-59' UNION ALL SELECT '2014-2016' AS "Year", 'Oral cavity' AS "Tumour Type", 'Age 60-69' AS "Age", 'Stage 4' AS "stages.MASTER", SUM(statisticofinterest_h_and_n) as statistic_of_interest FROM tumour_cohort_linked_h_and_n WHERE DIAGNOSISYEAR BETWEEN 2014 AND 2016 AND SITE = 'Oral cavity' AND STAGE_1234X = 'Stage 4' AND SPLIT_60_70 = 'Age 60-69' UNION ALL SELECT '2014-2016' AS "Year", 'Oral cavity' AS "Tumour Type", 'Age 70+' AS "Age", 'Stage 4' AS "stages.MASTER", SUM(statisticofinterest_h_and_n) as statistic_of_interest FROM tumour_cohort_linked_h_and_n WHERE DIAGNOSISYEAR BETWEEN 2014 AND 2016 AND SITE = 'Oral cavity' AND STAGE_1234X = 'Stage 4' AND SPLIT_60_70 = 'Age 70+' UNION ALL SELECT '2014-2016' AS "Year", 'Oral cavity' AS "Tumour Type", 'All' AS "Age", 'Stage unknown' AS "stages.MASTER", SUM(statisticofinterest_h_and_n) as statistic_of_interest FROM tumour_cohort_linked_h_and_n WHERE DIAGNOSISYEAR BETWEEN 2014 AND 2016 AND SITE = 'Oral cavity' AND STAGE_1234X = 'Stage unknown' UNION ALL SELECT '2014-2016' AS "Year", 'Oral cavity' AS "Tumour Type", 'Age 00-69' AS "Age", 'Stage unknown' AS "stages.MASTER", SUM(statisticofinterest_h_and_n) as statistic_of_interest FROM tumour_cohort_linked_h_and_n WHERE DIAGNOSISYEAR BETWEEN 2014 AND 2016 AND SITE = 'Oral cavity' AND STAGE_1234X = 'Stage unknown' AND SPLIT_70 = 'Age 00-69' UNION ALL SELECT '2014-2016' AS "Year", 'Oral cavity' AS "Tumour Type", 'Age 70+' AS "Age", 'Stage unknown' AS "stages.MASTER", SUM(statisticofinterest_h_and_n) as statistic_of_interest FROM tumour_cohort_linked_h_and_n WHERE DIAGNOSISYEAR BETWEEN 2014 AND 2016 AND SITE = 'Oral cavity' AND STAGE_1234X = 'Stage unknown' AND SPLIT_70 = 'Age 70+' UNION ALL SELECT '2014-2016' AS "Year", 'Oropharynx including base of tongue, soft palate and tonsils' AS "Tumour Type", 'All' AS "Age", 'All' AS "stages.MASTER", SUM(statisticofinterest_h_and_n) as statistic_of_interest FROM tumour_cohort_linked_h_and_n WHERE DIAGNOSISYEAR BETWEEN 2014 AND 2016 AND SITE = 'Oropharynx including base of tongue, soft palate and tonsils' UNION ALL SELECT '2014-2016' AS "Year", 'Oropharynx including base of tongue, soft palate and tonsils' AS "Tumour Type", 'All' AS "Age", 'Stage 1' AS "stages.MASTER", SUM(statisticofinterest_h_and_n) as statistic_of_interest FROM tumour_cohort_linked_h_and_n WHERE DIAGNOSISYEAR BETWEEN 2014 AND 2016 AND SITE = 'Oropharynx including base of tongue, soft palate and tonsils' AND STAGE_1234X = 'Stage 1' UNION ALL SELECT '2014-2016' AS "Year", 'Oropharynx including base of tongue, soft palate and tonsils' AS "Tumour Type", 'All' AS "Age", 'Stage 2' AS "stages.MASTER", SUM(statisticofinterest_h_and_n) as statistic_of_interest FROM tumour_cohort_linked_h_and_n WHERE DIAGNOSISYEAR BETWEEN 2014 AND 2016 AND SITE = 'Oropharynx including base of tongue, soft palate and tonsils' AND STAGE_1234X = 'Stage 2' UNION ALL SELECT '2014-2016' AS "Year", 'Oropharynx including base of tongue, soft palate and tonsils' AS "Tumour Type", 'All' AS "Age", 'Stage 3' AS "stages.MASTER", SUM(statisticofinterest_h_and_n) as statistic_of_interest FROM tumour_cohort_linked_h_and_n WHERE DIAGNOSISYEAR BETWEEN 2014 AND 2016 AND SITE = 'Oropharynx including base of tongue, soft palate and tonsils' AND STAGE_1234X = 'Stage 3' UNION ALL SELECT '2014-2016' AS "Year", 'Oropharynx including base of tongue, soft palate and tonsils' AS "Tumour Type", 'Age 00-59' AS "Age", 'Stage 3' AS "stages.MASTER", SUM(statisticofinterest_h_and_n) as statistic_of_interest FROM tumour_cohort_linked_h_and_n WHERE DIAGNOSISYEAR BETWEEN 2014 AND 2016 AND SITE = 'Oropharynx including base of tongue, soft palate and tonsils' AND STAGE_1234X = 'Stage 3' AND SPLIT_60 = 'Age 00-59' UNION ALL SELECT '2014-2016' AS "Year", 'Oropharynx including base of tongue, soft palate and tonsils' AS "Tumour Type", 'Age 60+' AS "Age", 'Stage 3' AS "stages.MASTER", SUM(statisticofinterest_h_and_n) as statistic_of_interest FROM tumour_cohort_linked_h_and_n WHERE DIAGNOSISYEAR BETWEEN 2014 AND 2016 AND SITE = 'Oropharynx including base of tongue, soft palate and tonsils' AND STAGE_1234X = 'Stage 3' AND SPLIT_60 = 'Age 60+' UNION ALL SELECT '2014-2016' AS "Year", 'Oropharynx including base of tongue, soft palate and tonsils' AS "Tumour Type", 'All' AS "Age", 'Stage 4' AS "stages.MASTER", SUM(statisticofinterest_h_and_n) as statistic_of_interest FROM tumour_cohort_linked_h_and_n WHERE DIAGNOSISYEAR BETWEEN 2014 AND 2016 AND SITE = 'Oropharynx including base of tongue, soft palate and tonsils' AND STAGE_1234X = 'Stage 4' UNION ALL SELECT '2014-2016' AS "Year", 'Oropharynx including base of tongue, soft palate and tonsils' AS "Tumour Type", 'Age 00-49' AS "Age", 'Stage 4' AS "stages.MASTER", SUM(statisticofinterest_h_and_n) as statistic_of_interest FROM tumour_cohort_linked_h_and_n WHERE DIAGNOSISYEAR BETWEEN 2014 AND 2016 AND SITE = 'Oropharynx including base of tongue, soft palate and tonsils' AND STAGE_1234X = 'Stage 4' AND SPLIT_50_TO_70 = 'Age 00-49' UNION ALL SELECT '2014-2016' AS "Year", 'Oropharynx including base of tongue, soft palate and tonsils' AS "Tumour Type", 'Age 50-59' AS "Age", 'Stage 4' AS "stages.MASTER", SUM(statisticofinterest_h_and_n) as statistic_of_interest FROM tumour_cohort_linked_h_and_n WHERE DIAGNOSISYEAR BETWEEN 2014 AND 2016 AND SITE = 'Oropharynx including base of tongue, soft palate and tonsils' AND STAGE_1234X = 'Stage 4' AND SPLIT_50_TO_70 = 'Age 50-59' UNION ALL SELECT '2014-2016' AS "Year", 'Oropharynx including base of tongue, soft palate and tonsils' AS "Tumour Type", 'Age 60-69' AS "Age", 'Stage 4' AS "stages.MASTER", SUM(statisticofinterest_h_and_n) as statistic_of_interest FROM tumour_cohort_linked_h_and_n WHERE DIAGNOSISYEAR BETWEEN 2014 AND 2016 AND SITE = 'Oropharynx including base of tongue, soft palate and tonsils' AND STAGE_1234X = 'Stage 4' AND SPLIT_50_TO_70 = 'Age 60-69' UNION ALL SELECT '2014-2016' AS "Year", 'Oropharynx including base of tongue, soft palate and tonsils' AS "Tumour Type", 'Age 70+' AS "Age", 'Stage 4' AS "stages.MASTER", SUM(statisticofinterest_h_and_n) as statistic_of_interest FROM tumour_cohort_linked_h_and_n WHERE DIAGNOSISYEAR BETWEEN 2014 AND 2016 AND SITE = 'Oropharynx including base of tongue, soft palate and tonsils' AND STAGE_1234X = 'Stage 4' AND SPLIT_50_TO_70 = 'Age 70+' UNION ALL SELECT '2014-2016' AS "Year", 'Oropharynx including base of tongue, soft palate and tonsils' AS "Tumour Type", 'All' AS "Age", 'Stage unknown' AS "stages.MASTER", SUM(statisticofinterest_h_and_n) as statistic_of_interest FROM tumour_cohort_linked_h_and_n WHERE DIAGNOSISYEAR BETWEEN 2014 AND 2016 AND SITE = 'Oropharynx including base of tongue, soft palate and tonsils' AND STAGE_1234X = 'Stage unknown' UNION ALL SELECT '2014-2016' AS "Year", 'Oropharynx including base of tongue, soft palate and tonsils' AS "Tumour Type", 'Age 00-69' AS "Age", 'Stage unknown' AS "stages.MASTER", SUM(statisticofinterest_h_and_n) as statistic_of_interest FROM tumour_cohort_linked_h_and_n WHERE DIAGNOSISYEAR BETWEEN 2014 AND 2016 AND SITE = 'Oropharynx including base of tongue, soft palate and tonsils' AND STAGE_1234X = 'Stage unknown' AND SPLIT_70 = 'Age 00-69' UNION ALL SELECT '2014-2016' AS "Year", 'Oropharynx including base of tongue, soft palate and tonsils' AS "Tumour Type", 'Age 70+' AS "Age", 'Stage unknown' AS "stages.MASTER", SUM(statisticofinterest_h_and_n) as statistic_of_interest FROM tumour_cohort_linked_h_and_n WHERE DIAGNOSISYEAR BETWEEN 2014 AND 2016 AND SITE = 'Oropharynx including base of tongue, soft palate and tonsils' AND STAGE_1234X = 'Stage unknown' AND SPLIT_70 = 'Age 70+' UNION ALL SELECT '2014-2016' AS "Year", 'Other and ill-defined sites in the lip, oral cavity and pharynx' AS "Tumour Type", 'All' AS "Age", 'All' AS "stages.MASTER", SUM(statisticofinterest_h_and_n) as statistic_of_interest FROM tumour_cohort_linked_h_and_n WHERE DIAGNOSISYEAR BETWEEN 2014 AND 2016 AND SITE = 'Other and ill-defined sites in the lip, oral cavity and pharynx' UNION ALL SELECT '2015-2017' AS "Year", 'All' AS "Tumour Type", 'All' AS "Age", 'All' AS "stages.MASTER", SUM(statisticofinterest_h_and_n) as statistic_of_interest FROM tumour_cohort_linked_h_and_n WHERE DIAGNOSISYEAR BETWEEN 2015 AND 2017 UNION ALL SELECT '2015-2017' AS "Year", 'External lip' AS "Tumour Type", 'All' AS "Age", 'All' AS "stages.MASTER", SUM(statisticofinterest_h_and_n) as statistic_of_interest FROM tumour_cohort_linked_h_and_n WHERE DIAGNOSISYEAR BETWEEN 2015 AND 2017 AND SITE = 'External lip' UNION ALL SELECT '2015-2017' AS "Year", 'Hypopharynx including piriform sinus' AS "Tumour Type", 'All' AS "Age", 'All' AS "stages.MASTER", SUM(statisticofinterest_h_and_n) as statistic_of_interest FROM tumour_cohort_linked_h_and_n WHERE DIAGNOSISYEAR BETWEEN 2015 AND 2017 AND SITE = 'Hypopharynx including piriform sinus' UNION ALL SELECT '2015-2017' AS "Year", 'Hypopharynx including piriform sinus' AS "Tumour Type", 'Age 00-59' AS "Age", 'All' AS "stages.MASTER", SUM(statisticofinterest_h_and_n) as statistic_of_interest FROM tumour_cohort_linked_h_and_n WHERE DIAGNOSISYEAR BETWEEN 2015 AND 2017 AND SITE = 'Hypopharynx including piriform sinus' AND SPLIT_60_70 = 'Age 00-59' UNION ALL SELECT '2015-2017' AS "Year", 'Hypopharynx including piriform sinus' AS "Tumour Type", 'Age 60-69' AS "Age", 'All' AS "stages.MASTER", SUM(statisticofinterest_h_and_n) as statistic_of_interest FROM tumour_cohort_linked_h_and_n WHERE DIAGNOSISYEAR BETWEEN 2015 AND 2017 AND SITE = 'Hypopharynx including piriform sinus' AND SPLIT_60_70 = 'Age 60-69' UNION ALL SELECT '2015-2017' AS "Year", 'Hypopharynx including piriform sinus' AS "Tumour Type", 'Age 70+' AS "Age", 'All' AS "stages.MASTER", SUM(statisticofinterest_h_and_n) as statistic_of_interest FROM tumour_cohort_linked_h_and_n WHERE DIAGNOSISYEAR BETWEEN 2015 AND 2017 AND SITE = 'Hypopharynx including piriform sinus' AND SPLIT_60_70 = 'Age 70+' UNION ALL SELECT '2015-2017' AS "Year", 'Larynx including anterior surface of epiglottis' AS "Tumour Type", 'All' AS "Age", 'All' AS "stages.MASTER", SUM(statisticofinterest_h_and_n) as statistic_of_interest FROM tumour_cohort_linked_h_and_n WHERE DIAGNOSISYEAR BETWEEN 2015 AND 2017 AND SITE = 'Larynx including anterior surface of epiglottis' UNION ALL SELECT '2015-2017' AS "Year", 'Larynx including anterior surface of epiglottis' AS "Tumour Type", 'All' AS "Age", 'Stage 1' AS "stages.MASTER", SUM(statisticofinterest_h_and_n) as statistic_of_interest FROM tumour_cohort_linked_h_and_n WHERE DIAGNOSISYEAR BETWEEN 2015 AND 2017 AND SITE = 'Larynx including anterior surface of epiglottis' AND STAGE_1234X = 'Stage 1' UNION ALL SELECT '2015-2017' AS "Year", 'Larynx including anterior surface of epiglottis' AS "Tumour Type", 'Age 00-59' AS "Age", 'Stage 1' AS "stages.MASTER", SUM(statisticofinterest_h_and_n) as statistic_of_interest FROM tumour_cohort_linked_h_and_n WHERE DIAGNOSISYEAR BETWEEN 2015 AND 2017 AND SITE = 'Larynx including anterior surface of epiglottis' AND STAGE_1234X = 'Stage 1' AND SPLIT_60_70 = 'Age 00-59' UNION ALL SELECT '2015-2017' AS "Year", 'Larynx including anterior surface of epiglottis' AS "Tumour Type", 'Age 60-69' AS "Age", 'Stage 1' AS "stages.MASTER", SUM(statisticofinterest_h_and_n) as statistic_of_interest FROM tumour_cohort_linked_h_and_n WHERE DIAGNOSISYEAR BETWEEN 2015 AND 2017 AND SITE = 'Larynx including anterior surface of epiglottis' AND STAGE_1234X = 'Stage 1' AND SPLIT_60_70 = 'Age 60-69' UNION ALL SELECT '2015-2017' AS "Year", 'Larynx including anterior surface of epiglottis' AS "Tumour Type", 'Age 70+' AS "Age", 'Stage 1' AS "stages.MASTER", SUM(statisticofinterest_h_and_n) as statistic_of_interest FROM tumour_cohort_linked_h_and_n WHERE DIAGNOSISYEAR BETWEEN 2015 AND 2017 AND SITE = 'Larynx including anterior surface of epiglottis' AND STAGE_1234X = 'Stage 1' AND SPLIT_60_70 = 'Age 70+' UNION ALL SELECT '2015-2017' AS "Year", 'Larynx including anterior surface of epiglottis' AS "Tumour Type", 'All' AS "Age", 'Stage 2' AS "stages.MASTER", SUM(statisticofinterest_h_and_n) as statistic_of_interest FROM tumour_cohort_linked_h_and_n WHERE DIAGNOSISYEAR BETWEEN 2015 AND 2017 AND SITE = 'Larynx including anterior surface of epiglottis' AND STAGE_1234X = 'Stage 2' UNION ALL SELECT '2015-2017' AS "Year", 'Larynx including anterior surface of epiglottis' AS "Tumour Type", 'Age 00-59' AS "Age", 'Stage 2' AS "stages.MASTER", SUM(statisticofinterest_h_and_n) as statistic_of_interest FROM tumour_cohort_linked_h_and_n WHERE DIAGNOSISYEAR BETWEEN 2015 AND 2017 AND SITE = 'Larynx including anterior surface of epiglottis' AND STAGE_1234X = 'Stage 2' AND SPLIT_60_70 = 'Age 00-59' UNION ALL SELECT '2015-2017' AS "Year", 'Larynx including anterior surface of epiglottis' AS "Tumour Type", 'Age 60-69' AS "Age", 'Stage 2' AS "stages.MASTER", SUM(statisticofinterest_h_and_n) as statistic_of_interest FROM tumour_cohort_linked_h_and_n WHERE DIAGNOSISYEAR BETWEEN 2015 AND 2017 AND SITE = 'Larynx including anterior surface of epiglottis' AND STAGE_1234X = 'Stage 2' AND SPLIT_60_70 = 'Age 60-69' UNION ALL SELECT '2015-2017' AS "Year", 'Larynx including anterior surface of epiglottis' AS "Tumour Type", 'Age 70+' AS "Age", 'Stage 2' AS "stages.MASTER", SUM(statisticofinterest_h_and_n) as statistic_of_interest FROM tumour_cohort_linked_h_and_n WHERE DIAGNOSISYEAR BETWEEN 2015 AND 2017 AND SITE = 'Larynx including anterior surface of epiglottis' AND STAGE_1234X = 'Stage 2' AND SPLIT_60_70 = 'Age 70+' UNION ALL SELECT '2015-2017' AS "Year", 'Larynx including anterior surface of epiglottis' AS "Tumour Type", 'All' AS "Age", 'Stage 3' AS "stages.MASTER", SUM(statisticofinterest_h_and_n) as statistic_of_interest FROM tumour_cohort_linked_h_and_n WHERE DIAGNOSISYEAR BETWEEN 2015 AND 2017 AND SITE = 'Larynx including anterior surface of epiglottis' AND STAGE_1234X = 'Stage 3' UNION ALL SELECT '2015-2017' AS "Year", 'Larynx including anterior surface of epiglottis' AS "Tumour Type", 'Age 00-59' AS "Age", 'Stage 3' AS "stages.MASTER", SUM(statisticofinterest_h_and_n) as statistic_of_interest FROM tumour_cohort_linked_h_and_n WHERE DIAGNOSISYEAR BETWEEN 2015 AND 2017 AND SITE = 'Larynx including anterior surface of epiglottis' AND STAGE_1234X = 'Stage 3' AND SPLIT_60_70 = 'Age 00-59' UNION ALL SELECT '2015-2017' AS "Year", 'Larynx including anterior surface of epiglottis' AS "Tumour Type", 'Age 60-69' AS "Age", 'Stage 3' AS "stages.MASTER", SUM(statisticofinterest_h_and_n) as statistic_of_interest FROM tumour_cohort_linked_h_and_n WHERE DIAGNOSISYEAR BETWEEN 2015 AND 2017 AND SITE = 'Larynx including anterior surface of epiglottis' AND STAGE_1234X = 'Stage 3' AND SPLIT_60_70 = 'Age 60-69' UNION ALL SELECT '2015-2017' AS "Year", 'Larynx including anterior surface of epiglottis' AS "Tumour Type", 'Age 70+' AS "Age", 'Stage 3' AS "stages.MASTER", SUM(statisticofinterest_h_and_n) as statistic_of_interest FROM tumour_cohort_linked_h_and_n WHERE DIAGNOSISYEAR BETWEEN 2015 AND 2017 AND SITE = 'Larynx including anterior surface of epiglottis' AND STAGE_1234X = 'Stage 3' AND SPLIT_60_70 = 'Age 70+' UNION ALL SELECT '2015-2017' AS "Year", 'Larynx including anterior surface of epiglottis' AS "Tumour Type", 'All' AS "Age", 'Stage 4' AS "stages.MASTER", SUM(statisticofinterest_h_and_n) as statistic_of_interest FROM tumour_cohort_linked_h_and_n WHERE DIAGNOSISYEAR BETWEEN 2015 AND 2017 AND SITE = 'Larynx including anterior surface of epiglottis' AND STAGE_1234X = 'Stage 4' UNION ALL SELECT '2015-2017' AS "Year", 'Larynx including anterior surface of epiglottis' AS "Tumour Type", 'Age 00-59' AS "Age", 'Stage 4' AS "stages.MASTER", SUM(statisticofinterest_h_and_n) as statistic_of_interest FROM tumour_cohort_linked_h_and_n WHERE DIAGNOSISYEAR BETWEEN 2015 AND 2017 AND SITE = 'Larynx including anterior surface of epiglottis' AND STAGE_1234X = 'Stage 4' AND SPLIT_60_70 = 'Age 00-59' UNION ALL SELECT '2015-2017' AS "Year", 'Larynx including anterior surface of epiglottis' AS "Tumour Type", 'Age 60-69' AS "Age", 'Stage 4' AS "stages.MASTER", SUM(statisticofinterest_h_and_n) as statistic_of_interest FROM tumour_cohort_linked_h_and_n WHERE DIAGNOSISYEAR BETWEEN 2015 AND 2017 AND SITE = 'Larynx including anterior surface of epiglottis' AND STAGE_1234X = 'Stage 4' AND SPLIT_60_70 = 'Age 60-69' UNION ALL SELECT '2015-2017' AS "Year", 'Larynx including anterior surface of epiglottis' AS "Tumour Type", 'Age 70+' AS "Age", 'Stage 4' AS "stages.MASTER", SUM(statisticofinterest_h_and_n) as statistic_of_interest FROM tumour_cohort_linked_h_and_n WHERE DIAGNOSISYEAR BETWEEN 2015 AND 2017 AND SITE = 'Larynx including anterior surface of epiglottis' AND STAGE_1234X = 'Stage 4' AND SPLIT_60_70 = 'Age 70+' UNION ALL SELECT '2015-2017' AS "Year", 'Larynx including anterior surface of epiglottis' AS "Tumour Type", 'All' AS "Age", 'Stage unknown' AS "stages.MASTER", SUM(statisticofinterest_h_and_n) as statistic_of_interest FROM tumour_cohort_linked_h_and_n WHERE DIAGNOSISYEAR BETWEEN 2015 AND 2017 AND SITE = 'Larynx including anterior surface of epiglottis' AND STAGE_1234X = 'Stage unknown' UNION ALL SELECT '2015-2017' AS "Year", 'Larynx including anterior surface of epiglottis' AS "Tumour Type", 'Age 00-69' AS "Age", 'Stage unknown' AS "stages.MASTER", SUM(statisticofinterest_h_and_n) as statistic_of_interest FROM tumour_cohort_linked_h_and_n WHERE DIAGNOSISYEAR BETWEEN 2015 AND 2017 AND SITE = 'Larynx including anterior surface of epiglottis' AND STAGE_1234X = 'Stage unknown' AND SPLIT_70 = 'Age 00-69' UNION ALL SELECT '2015-2017' AS "Year", 'Larynx including anterior surface of epiglottis' AS "Tumour Type", 'Age 70+' AS "Age", 'Stage unknown' AS "stages.MASTER", SUM(statisticofinterest_h_and_n) as statistic_of_interest FROM tumour_cohort_linked_h_and_n WHERE DIAGNOSISYEAR BETWEEN 2015 AND 2017 AND SITE = 'Larynx including anterior surface of epiglottis' AND STAGE_1234X = 'Stage unknown' AND SPLIT_70 = 'Age 70+' UNION ALL SELECT '2015-2017' AS "Year", 'Major salivary glands' AS "Tumour Type", 'All' AS "Age", 'All' AS "stages.MASTER", SUM(statisticofinterest_h_and_n) as statistic_of_interest FROM tumour_cohort_linked_h_and_n WHERE DIAGNOSISYEAR BETWEEN 2015 AND 2017 AND SITE = 'Major salivary glands' UNION ALL SELECT '2015-2017' AS "Year", 'Major salivary glands' AS "Tumour Type", 'All' AS "Age", 'Stage 1-3' AS "stages.MASTER", SUM(statisticofinterest_h_and_n) as statistic_of_interest FROM tumour_cohort_linked_h_and_n WHERE DIAGNOSISYEAR BETWEEN 2015 AND 2017 AND SITE = 'Major salivary glands' AND STAGE_SPLIT13 = 'Stage 1-3' UNION ALL SELECT '2015-2017' AS "Year", 'Major salivary glands' AS "Tumour Type", 'All' AS "Age", 'Stage 4' AS "stages.MASTER", SUM(statisticofinterest_h_and_n) as statistic_of_interest FROM tumour_cohort_linked_h_and_n WHERE DIAGNOSISYEAR BETWEEN 2015 AND 2017 AND SITE = 'Major salivary glands' AND STAGE_SPLIT13 = 'Stage 4' UNION ALL SELECT '2015-2017' AS "Year", 'Major salivary glands' AS "Tumour Type", 'All' AS "Age", 'Stage unknown' AS "stages.MASTER", SUM(statisticofinterest_h_and_n) as statistic_of_interest FROM tumour_cohort_linked_h_and_n WHERE DIAGNOSISYEAR BETWEEN 2015 AND 2017 AND SITE = 'Major salivary glands' AND STAGE_SPLIT13 = 'Stage unknown' UNION ALL SELECT '2015-2017' AS "Year", 'Middle ear' AS "Tumour Type", 'All' AS "Age", 'All' AS "stages.MASTER", SUM(statisticofinterest_h_and_n) as statistic_of_interest FROM tumour_cohort_linked_h_and_n WHERE DIAGNOSISYEAR BETWEEN 2015 AND 2017 AND SITE = 'Middle ear' UNION ALL SELECT '2015-2017' AS "Year", 'Nasal cavity and sinus' AS "Tumour Type", 'All' AS "Age", 'All' AS "stages.MASTER", SUM(statisticofinterest_h_and_n) as statistic_of_interest FROM tumour_cohort_linked_h_and_n WHERE DIAGNOSISYEAR BETWEEN 2015 AND 2017 AND SITE = 'Nasal cavity and sinus' UNION ALL SELECT '2015-2017' AS "Year", 'Nasal cavity and sinus' AS "Tumour Type", 'All' AS "Age", 'Stage 1-2' AS "stages.MASTER", SUM(statisticofinterest_h_and_n) as statistic_of_interest FROM tumour_cohort_linked_h_and_n WHERE DIAGNOSISYEAR BETWEEN 2015 AND 2017 AND SITE = 'Nasal cavity and sinus' AND STAGE_SPLIT2 = 'Stage 1-2' UNION ALL SELECT '2015-2017' AS "Year", 'Nasal cavity and sinus' AS "Tumour Type", 'All' AS "Age", 'Stage 3-4' AS "stages.MASTER", SUM(statisticofinterest_h_and_n) as statistic_of_interest FROM tumour_cohort_linked_h_and_n WHERE DIAGNOSISYEAR BETWEEN 2015 AND 2017 AND SITE = 'Nasal cavity and sinus' AND STAGE_SPLIT2 = 'Stage 3-4' UNION ALL SELECT '2015-2017' AS "Year", 'Nasal cavity and sinus' AS "Tumour Type", 'All' AS "Age", 'Stage unknown' AS "stages.MASTER", SUM(statisticofinterest_h_and_n) as statistic_of_interest FROM tumour_cohort_linked_h_and_n WHERE DIAGNOSISYEAR BETWEEN 2015 AND 2017 AND SITE = 'Nasal cavity and sinus' AND STAGE_SPLIT2 = 'Stage unknown' UNION ALL SELECT '2015-2017' AS "Year", 'Nasopharynx' AS "Tumour Type", 'All' AS "Age", 'All' AS "stages.MASTER", SUM(statisticofinterest_h_and_n) as statistic_of_interest FROM tumour_cohort_linked_h_and_n WHERE DIAGNOSISYEAR BETWEEN 2015 AND 2017 AND SITE = 'Nasopharynx' UNION ALL SELECT '2015-2017' AS "Year", 'Oral cavity' AS "Tumour Type", 'All' AS "Age", 'All' AS "stages.MASTER", SUM(statisticofinterest_h_and_n) as statistic_of_interest FROM tumour_cohort_linked_h_and_n WHERE DIAGNOSISYEAR BETWEEN 2015 AND 2017 AND SITE = 'Oral cavity' UNION ALL SELECT '2015-2017' AS "Year", 'Oral cavity' AS "Tumour Type", 'All' AS "Age", 'Stage 1' AS "stages.MASTER", SUM(statisticofinterest_h_and_n) as statistic_of_interest FROM tumour_cohort_linked_h_and_n WHERE DIAGNOSISYEAR BETWEEN 2015 AND 2017 AND SITE = 'Oral cavity' AND STAGE_1234X = 'Stage 1' UNION ALL SELECT '2015-2017' AS "Year", 'Oral cavity' AS "Tumour Type", 'Age 00-59' AS "Age", 'Stage 1' AS "stages.MASTER", SUM(statisticofinterest_h_and_n) as statistic_of_interest FROM tumour_cohort_linked_h_and_n WHERE DIAGNOSISYEAR BETWEEN 2015 AND 2017 AND SITE = 'Oral cavity' AND STAGE_1234X = 'Stage 1' AND SPLIT_60_70 = 'Age 00-59' UNION ALL SELECT '2015-2017' AS "Year", 'Oral cavity' AS "Tumour Type", 'Age 60-69' AS "Age", 'Stage 1' AS "stages.MASTER", SUM(statisticofinterest_h_and_n) as statistic_of_interest FROM tumour_cohort_linked_h_and_n WHERE DIAGNOSISYEAR BETWEEN 2015 AND 2017 AND SITE = 'Oral cavity' AND STAGE_1234X = 'Stage 1' AND SPLIT_60_70 = 'Age 60-69' UNION ALL SELECT '2015-2017' AS "Year", 'Oral cavity' AS "Tumour Type", 'Age 70+' AS "Age", 'Stage 1' AS "stages.MASTER", SUM(statisticofinterest_h_and_n) as statistic_of_interest FROM tumour_cohort_linked_h_and_n WHERE DIAGNOSISYEAR BETWEEN 2015 AND 2017 AND SITE = 'Oral cavity' AND STAGE_1234X = 'Stage 1' AND SPLIT_60_70 = 'Age 70+' UNION ALL SELECT '2015-2017' AS "Year", 'Oral cavity' AS "Tumour Type", 'All' AS "Age", 'Stage 2' AS "stages.MASTER", SUM(statisticofinterest_h_and_n) as statistic_of_interest FROM tumour_cohort_linked_h_and_n WHERE DIAGNOSISYEAR BETWEEN 2015 AND 2017 AND SITE = 'Oral cavity' AND STAGE_1234X = 'Stage 2' UNION ALL SELECT '2015-2017' AS "Year", 'Oral cavity' AS "Tumour Type", 'Age 00-59' AS "Age", 'Stage 2' AS "stages.MASTER", SUM(statisticofinterest_h_and_n) as statistic_of_interest FROM tumour_cohort_linked_h_and_n WHERE DIAGNOSISYEAR BETWEEN 2015 AND 2017 AND SITE = 'Oral cavity' AND STAGE_1234X = 'Stage 2' AND SPLIT_60_70 = 'Age 00-59' UNION ALL SELECT '2015-2017' AS "Year", 'Oral cavity' AS "Tumour Type", 'Age 60-69' AS "Age", 'Stage 2' AS "stages.MASTER", SUM(statisticofinterest_h_and_n) as statistic_of_interest FROM tumour_cohort_linked_h_and_n WHERE DIAGNOSISYEAR BETWEEN 2015 AND 2017 AND SITE = 'Oral cavity' AND STAGE_1234X = 'Stage 2' AND SPLIT_60_70 = 'Age 60-69' UNION ALL SELECT '2015-2017' AS "Year", 'Oral cavity' AS "Tumour Type", 'Age 70+' AS "Age", 'Stage 2' AS "stages.MASTER", SUM(statisticofinterest_h_and_n) as statistic_of_interest FROM tumour_cohort_linked_h_and_n WHERE DIAGNOSISYEAR BETWEEN 2015 AND 2017 AND SITE = 'Oral cavity' AND STAGE_1234X = 'Stage 2' AND SPLIT_60_70 = 'Age 70+' UNION ALL SELECT '2015-2017' AS "Year", 'Oral cavity' AS "Tumour Type", 'All' AS "Age", 'Stage 3' AS "stages.MASTER", SUM(statisticofinterest_h_and_n) as statistic_of_interest FROM tumour_cohort_linked_h_and_n WHERE DIAGNOSISYEAR BETWEEN 2015 AND 2017 AND SITE = 'Oral cavity' AND STAGE_1234X = 'Stage 3' UNION ALL SELECT '2015-2017' AS "Year", 'Oral cavity' AS "Tumour Type", 'All' AS "Age", 'Stage 4' AS "stages.MASTER", SUM(statisticofinterest_h_and_n) as statistic_of_interest FROM tumour_cohort_linked_h_and_n WHERE DIAGNOSISYEAR BETWEEN 2015 AND 2017 AND SITE = 'Oral cavity' AND STAGE_1234X = 'Stage 4' UNION ALL SELECT '2015-2017' AS "Year", 'Oral cavity' AS "Tumour Type", 'Age 00-59' AS "Age", 'Stage 4' AS "stages.MASTER", SUM(statisticofinterest_h_and_n) as statistic_of_interest FROM tumour_cohort_linked_h_and_n WHERE DIAGNOSISYEAR BETWEEN 2015 AND 2017 AND SITE = 'Oral cavity' AND STAGE_1234X = 'Stage 4' AND SPLIT_60_70 = 'Age 00-59' UNION ALL SELECT '2015-2017' AS "Year", 'Oral cavity' AS "Tumour Type", 'Age 60-69' AS "Age", 'Stage 4' AS "stages.MASTER", SUM(statisticofinterest_h_and_n) as statistic_of_interest FROM tumour_cohort_linked_h_and_n WHERE DIAGNOSISYEAR BETWEEN 2015 AND 2017 AND SITE = 'Oral cavity' AND STAGE_1234X = 'Stage 4' AND SPLIT_60_70 = 'Age 60-69' UNION ALL SELECT '2015-2017' AS "Year", 'Oral cavity' AS "Tumour Type", 'Age 70+' AS "Age", 'Stage 4' AS "stages.MASTER", SUM(statisticofinterest_h_and_n) as statistic_of_interest FROM tumour_cohort_linked_h_and_n WHERE DIAGNOSISYEAR BETWEEN 2015 AND 2017 AND SITE = 'Oral cavity' AND STAGE_1234X = 'Stage 4' AND SPLIT_60_70 = 'Age 70+' UNION ALL SELECT '2015-2017' AS "Year", 'Oral cavity' AS "Tumour Type", 'All' AS "Age", 'Stage unknown' AS "stages.MASTER", SUM(statisticofinterest_h_and_n) as statistic_of_interest FROM tumour_cohort_linked_h_and_n WHERE DIAGNOSISYEAR BETWEEN 2015 AND 2017 AND SITE = 'Oral cavity' AND STAGE_1234X = 'Stage unknown' UNION ALL SELECT '2015-2017' AS "Year", 'Oral cavity' AS "Tumour Type", 'Age 00-69' AS "Age", 'Stage unknown' AS "stages.MASTER", SUM(statisticofinterest_h_and_n) as statistic_of_interest FROM tumour_cohort_linked_h_and_n WHERE DIAGNOSISYEAR BETWEEN 2015 AND 2017 AND SITE = 'Oral cavity' AND STAGE_1234X = 'Stage unknown' AND SPLIT_70 = 'Age 00-69' UNION ALL SELECT '2015-2017' AS "Year", 'Oral cavity' AS "Tumour Type", 'Age 70+' AS "Age", 'Stage unknown' AS "stages.MASTER", SUM(statisticofinterest_h_and_n) as statistic_of_interest FROM tumour_cohort_linked_h_and_n WHERE DIAGNOSISYEAR BETWEEN 2015 AND 2017 AND SITE = 'Oral cavity' AND STAGE_1234X = 'Stage unknown' AND SPLIT_70 = 'Age 70+' UNION ALL SELECT '2015-2017' AS "Year", 'Oropharynx including base of tongue, soft palate and tonsils' AS "Tumour Type", 'All' AS "Age", 'All' AS "stages.MASTER", SUM(statisticofinterest_h_and_n) as statistic_of_interest FROM tumour_cohort_linked_h_and_n WHERE DIAGNOSISYEAR BETWEEN 2015 AND 2017 AND SITE = 'Oropharynx including base of tongue, soft palate and tonsils' UNION ALL SELECT '2015-2017' AS "Year", 'Oropharynx including base of tongue, soft palate and tonsils' AS "Tumour Type", 'All' AS "Age", 'Stage 1' AS "stages.MASTER", SUM(statisticofinterest_h_and_n) as statistic_of_interest FROM tumour_cohort_linked_h_and_n WHERE DIAGNOSISYEAR BETWEEN 2015 AND 2017 AND SITE = 'Oropharynx including base of tongue, soft palate and tonsils' AND STAGE_1234X = 'Stage 1' UNION ALL SELECT '2015-2017' AS "Year", 'Oropharynx including base of tongue, soft palate and tonsils' AS "Tumour Type", 'All' AS "Age", 'Stage 2' AS "stages.MASTER", SUM(statisticofinterest_h_and_n) as statistic_of_interest FROM tumour_cohort_linked_h_and_n WHERE DIAGNOSISYEAR BETWEEN 2015 AND 2017 AND SITE = 'Oropharynx including base of tongue, soft palate and tonsils' AND STAGE_1234X = 'Stage 2' UNION ALL SELECT '2015-2017' AS "Year", 'Oropharynx including base of tongue, soft palate and tonsils' AS "Tumour Type", 'All' AS "Age", 'Stage 3' AS "stages.MASTER", SUM(statisticofinterest_h_and_n) as statistic_of_interest FROM tumour_cohort_linked_h_and_n WHERE DIAGNOSISYEAR BETWEEN 2015 AND 2017 AND SITE = 'Oropharynx including base of tongue, soft palate and tonsils' AND STAGE_1234X = 'Stage 3' UNION ALL SELECT '2015-2017' AS "Year", 'Oropharynx including base of tongue, soft palate and tonsils' AS "Tumour Type", 'Age 00-59' AS "Age", 'Stage 3' AS "stages.MASTER", SUM(statisticofinterest_h_and_n) as statistic_of_interest FROM tumour_cohort_linked_h_and_n WHERE DIAGNOSISYEAR BETWEEN 2015 AND 2017 AND SITE = 'Oropharynx including base of tongue, soft palate and tonsils' AND STAGE_1234X = 'Stage 3' AND SPLIT_60 = 'Age 00-59' UNION ALL SELECT '2015-2017' AS "Year", 'Oropharynx including base of tongue, soft palate and tonsils' AS "Tumour Type", 'Age 60+' AS "Age", 'Stage 3' AS "stages.MASTER", SUM(statisticofinterest_h_and_n) as statistic_of_interest FROM tumour_cohort_linked_h_and_n WHERE DIAGNOSISYEAR BETWEEN 2015 AND 2017 AND SITE = 'Oropharynx including base of tongue, soft palate and tonsils' AND STAGE_1234X = 'Stage 3' AND SPLIT_60 = 'Age 60+' UNION ALL SELECT '2015-2017' AS "Year", 'Oropharynx including base of tongue, soft palate and tonsils' AS "Tumour Type", 'All' AS "Age", 'Stage 4' AS "stages.MASTER", SUM(statisticofinterest_h_and_n) as statistic_of_interest FROM tumour_cohort_linked_h_and_n WHERE DIAGNOSISYEAR BETWEEN 2015 AND 2017 AND SITE = 'Oropharynx including base of tongue, soft palate and tonsils' AND STAGE_1234X = 'Stage 4' UNION ALL SELECT '2015-2017' AS "Year", 'Oropharynx including base of tongue, soft palate and tonsils' AS "Tumour Type", 'Age 00-49' AS "Age", 'Stage 4' AS "stages.MASTER", SUM(statisticofinterest_h_and_n) as statistic_of_interest FROM tumour_cohort_linked_h_and_n WHERE DIAGNOSISYEAR BETWEEN 2015 AND 2017 AND SITE = 'Oropharynx including base of tongue, soft palate and tonsils' AND STAGE_1234X = 'Stage 4' AND SPLIT_50_TO_70 = 'Age 00-49' UNION ALL SELECT '2015-2017' AS "Year", 'Oropharynx including base of tongue, soft palate and tonsils' AS "Tumour Type", 'Age 50-59' AS "Age", 'Stage 4' AS "stages.MASTER", SUM(statisticofinterest_h_and_n) as statistic_of_interest FROM tumour_cohort_linked_h_and_n WHERE DIAGNOSISYEAR BETWEEN 2015 AND 2017 AND SITE = 'Oropharynx including base of tongue, soft palate and tonsils' AND STAGE_1234X = 'Stage 4' AND SPLIT_50_TO_70 = 'Age 50-59' UNION ALL SELECT '2015-2017' AS "Year", 'Oropharynx including base of tongue, soft palate and tonsils' AS "Tumour Type", 'Age 60-69' AS "Age", 'Stage 4' AS "stages.MASTER", SUM(statisticofinterest_h_and_n) as statistic_of_interest FROM tumour_cohort_linked_h_and_n WHERE DIAGNOSISYEAR BETWEEN 2015 AND 2017 AND SITE = 'Oropharynx including base of tongue, soft palate and tonsils' AND STAGE_1234X = 'Stage 4' AND SPLIT_50_TO_70 = 'Age 60-69' UNION ALL SELECT '2015-2017' AS "Year", 'Oropharynx including base of tongue, soft palate and tonsils' AS "Tumour Type", 'Age 70+' AS "Age", 'Stage 4' AS "stages.MASTER", SUM(statisticofinterest_h_and_n) as statistic_of_interest FROM tumour_cohort_linked_h_and_n WHERE DIAGNOSISYEAR BETWEEN 2015 AND 2017 AND SITE = 'Oropharynx including base of tongue, soft palate and tonsils' AND STAGE_1234X = 'Stage 4' AND SPLIT_50_TO_70 = 'Age 70+' UNION ALL SELECT '2015-2017' AS "Year", 'Oropharynx including base of tongue, soft palate and tonsils' AS "Tumour Type", 'All' AS "Age", 'Stage unknown' AS "stages.MASTER", SUM(statisticofinterest_h_and_n) as statistic_of_interest FROM tumour_cohort_linked_h_and_n WHERE DIAGNOSISYEAR BETWEEN 2015 AND 2017 AND SITE = 'Oropharynx including base of tongue, soft palate and tonsils' AND STAGE_1234X = 'Stage unknown' UNION ALL SELECT '2015-2017' AS "Year", 'Oropharynx including base of tongue, soft palate and tonsils' AS "Tumour Type", 'Age 00-69' AS "Age", 'Stage unknown' AS "stages.MASTER", SUM(statisticofinterest_h_and_n) as statistic_of_interest FROM tumour_cohort_linked_h_and_n WHERE DIAGNOSISYEAR BETWEEN 2015 AND 2017 AND SITE = 'Oropharynx including base of tongue, soft palate and tonsils' AND STAGE_1234X = 'Stage unknown' AND SPLIT_70 = 'Age 00-69' UNION ALL SELECT '2015-2017' AS "Year", 'Oropharynx including base of tongue, soft palate and tonsils' AS "Tumour Type", 'Age 70+' AS "Age", 'Stage unknown' AS "stages.MASTER", SUM(statisticofinterest_h_and_n) as statistic_of_interest FROM tumour_cohort_linked_h_and_n WHERE DIAGNOSISYEAR BETWEEN 2015 AND 2017 AND SITE = 'Oropharynx including base of tongue, soft palate and tonsils' AND STAGE_1234X = 'Stage unknown' AND SPLIT_70 = 'Age 70+' UNION ALL SELECT '2015-2017' AS "Year", 'Other and ill-defined sites in the lip, oral cavity and pharynx' AS "Tumour Type", 'All' AS "Age", 'All' AS "stages.MASTER", SUM(statisticofinterest_h_and_n) as statistic_of_interest FROM tumour_cohort_linked_h_and_n WHERE DIAGNOSISYEAR BETWEEN 2015 AND 2017 AND SITE = 'Other and ill-defined sites in the lip, oral cavity and pharynx' ) , lsoatoregionlookup as ( select distinct lsoa11, nhser17nm as Region from nspl_201805 left outer join ANALYSISNCR.CCG18_NHSER17_18_LKP_DATALAKE nr on nspl_201805.ccg = nr.ccgapr18cd where substr(lsoa11,1,1) = 'E' ) , lsoatoalllookup as ( select distinct lsoa11, 'All' as Region from nspl_201805 where substr(lsoa11,1,1) = 'E' ) , geoglookup as (select * from lsoatoregionlookup union select * from lsoatoalllookup) /* reminding myself how dual works: select rownum from dual; select rownum from dual -- LAST YEAR NEEDED connect by level <= 3; */ ,sexlookup as ( select 1 as basesex, '1' as sex from dual union select 2 as basesex, '2' as sex from dual union select 1 as basesex, 'All' as sex from dual union select 2 as basesex, 'All' as sex from dual ) -- year look up -- This is hacky, there must be a better way? -- But it does produce a look up table for 2013-2017 -- and also the three year rolling groups for 2013-2017 ,yearlookup as ( select n as baseyear , to_char(n) as year from ( select rownum n from dual -- LAST YEAR NEEDED connect by level <= 2017 ) -- FIRST YEAR NEEDED where n >= 2013 UNION select n as baseyear , '2013-2015' as year from ( select rownum n from dual -- LAST YEAR NEEDED connect by level <= 2015 ) -- FIRST YEAR NEEDED where n >= 2013 UNION select n as baseyear , '2014-2016' as year from ( select rownum n from dual -- LAST YEAR NEEDED connect by level <= 2016 ) -- FIRST YEAR NEEDED where n >= 2014 UNION select n as baseyear , '2015-2017' as year from ( select rownum n from dual -- LAST YEAR NEEDED connect by level <= 2017 ) -- FIRST YEAR NEEDED where n >= 2015 ) -- Making age lookup. --select * from analysischarlieturner.ages; -- We don't have a systematic 'we definitely used this age partition' -- So we should assume any age partition in the age table could be being used. -- There are currently 30 age partitions. -- This is a bit tedious. -- You can at least get a list of them: /* select COLUMN_NAME from ALL_TAB_COLUMNS where owner = 'ANALYSISCHARLIETURNER' and TABLE_NAME = 'AGES' order by COLUMN_NAME; */ -- If I had grip, I would write some R to automate creating this table -- Instead I did it in Excel , agelookup as ( select distinct floor(AGES.AGE/5)+1 as baseage, 'All' as age from analysischarlotteeversfield.ages UNION select distinct floor(AGES.AGE/5)+1 as baseage, SPLIT_13_25_40_60_80 as age from analysischarlotteeversfield.ages UNION select distinct floor(AGES.AGE/5)+1 as baseage, SPLIT_20_30_50_70 as age from analysischarlotteeversfield.ages UNION select distinct floor(AGES.AGE/5)+1 as baseage, SPLIT_20_40 as age from analysischarlotteeversfield.ages UNION select distinct floor(AGES.AGE/5)+1 as baseage, SPLIT_20_50_70 as age from analysischarlotteeversfield.ages UNION select distinct floor(AGES.AGE/5)+1 as baseage, SPLIT_20_50_70_80 as age from analysischarlotteeversfield.ages UNION select distinct floor(AGES.AGE/5)+1 as baseage, SPLIT_20_TO_40 as age from analysischarlotteeversfield.ages UNION select distinct floor(AGES.AGE/5)+1 as baseage, SPLIT_20_TO_90 as age from analysischarlotteeversfield.ages UNION select distinct floor(AGES.AGE/5)+1 as baseage, SPLIT_25 as age from analysischarlotteeversfield.ages UNION select distinct floor(AGES.AGE/5)+1 as baseage, SPLIT_25_40_60 as age from analysischarlotteeversfield.ages UNION select distinct floor(AGES.AGE/5)+1 as baseage, SPLIT_25_40_60_80 as age from analysischarlotteeversfield.ages UNION select distinct floor(AGES.AGE/5)+1 as baseage, SPLIT_25_40_TO_80 as age from analysischarlotteeversfield.ages UNION select distinct floor(AGES.AGE/5)+1 as baseage, SPLIT_25_50 as age from analysischarlotteeversfield.ages UNION select distinct floor(AGES.AGE/5)+1 as baseage, SPLIT_30 as age from analysischarlotteeversfield.ages UNION select distinct floor(AGES.AGE/5)+1 as baseage, SPLIT_30_50 as age from analysischarlotteeversfield.ages UNION select distinct floor(AGES.AGE/5)+1 as baseage, SPLIT_30_50_70 as age from analysischarlotteeversfield.ages UNION select distinct floor(AGES.AGE/5)+1 as baseage, SPLIT_30_50_70_80 as age from analysischarlotteeversfield.ages UNION select distinct floor(AGES.AGE/5)+1 as baseage, SPLIT_30_TO_50 as age from analysischarlotteeversfield.ages UNION select distinct floor(AGES.AGE/5)+1 as baseage, SPLIT_30_TO_70 as age from analysischarlotteeversfield.ages UNION select distinct floor(AGES.AGE/5)+1 as baseage, SPLIT_35 as age from analysischarlotteeversfield.ages UNION select distinct floor(AGES.AGE/5)+1 as baseage, SPLIT_40 as age from analysischarlotteeversfield.ages UNION select distinct floor(AGES.AGE/5)+1 as baseage, SPLIT_40_TO_70 as age from analysischarlotteeversfield.ages UNION select distinct floor(AGES.AGE/5)+1 as baseage, SPLIT_5_THEN_10 as age from analysischarlotteeversfield.ages UNION select distinct floor(AGES.AGE/5)+1 as baseage, SPLIT_50 as age from analysischarlotteeversfield.ages UNION select distinct floor(AGES.AGE/5)+1 as baseage, SPLIT_50_70 as age from analysischarlotteeversfield.ages UNION select distinct floor(AGES.AGE/5)+1 as baseage, SPLIT_50_70_80 as age from analysischarlotteeversfield.ages UNION select distinct floor(AGES.AGE/5)+1 as baseage, SPLIT_50_TO_70 as age from analysischarlotteeversfield.ages UNION select distinct floor(AGES.AGE/5)+1 as baseage, SPLIT_50_TO_80 as age from analysischarlotteeversfield.ages UNION select distinct floor(AGES.AGE/5)+1 as baseage, SPLIT_5_10_20_30_50_70 as age from analysischarlotteeversfield.ages UNION select distinct floor(AGES.AGE/5)+1 as baseage, SPLIT_60 as age from analysischarlotteeversfield.ages UNION select distinct floor(AGES.AGE/5)+1 as baseage, SPLIT_60_70 as age from analysischarlotteeversfield.ages UNION select distinct floor(AGES.AGE/5)+1 as baseage, SPLIT_60_70_75_80 as age from analysischarlotteeversfield.ages UNION select distinct floor(AGES.AGE/5)+1 as baseage, SPLIT_60_TO_80 as age from analysischarlotteeversfield.ages UNION select distinct floor(AGES.AGE/5)+1 as baseage, SPLIT_70 as age from analysischarlotteeversfield.ages UNION select distinct floor(AGES.AGE/5)+1 as baseage, SPLIT_70_75_80 as age from analysischarlotteeversfield.ages UNION select distinct floor(AGES.AGE/5)+1 as baseage, SPLIT_70_80 as age from analysischarlotteeversfield.ages UNION select distinct floor(AGES.AGE/5)+1 as baseage, SPLIT_80 as age from analysischarlotteeversfield.ages UNION select distinct floor(AGES.AGE/5)+1 as baseage, TENYEARAGE as age from analysischarlotteeversfield.ages) -- So, I have a region lookup, a sex lookup, a year lookup, and an age lookup. -- And some populations! Yay. Now just join them all together. -- We have no joins for the Welsh LSOAs and for the years before 2013. -- But that is what we wanted -- All ages and sexs have joined to something. , population_table as ( select g.region, s.sex, y.year, a.age, sum(popcount) as popcount from ons2017.populations_normalised POPS left outer join geoglookup g on pops.lsoa11 = g.lsoa11 left outer join sexlookup s on pops.sex = s.basesex left outer join yearlookup y on pops.year = y.baseyear left outer join agelookup a on pops.quinaryagegroupint = a.baseage group by g.region, s.sex, y.year, a.age ) , h_and_n as( SELECT 'Head and neck' AS "Cancer Site", "Year" AS "Year", "Tumour Type" AS "Tumour Type", case when "stages.MASTER" = 'All' then 'All stages' else "stages.MASTER" end AS "Stage", case when "Age" = 'All' then 'All ages' else "Age" end AS "Age", 'All England' AS "Region", 'Persons' AS "Sex", 'Not split by grade' AS "Grade", 'Not split by nodal status' AS "Nodal Status", statistic_of_interest as "statistic_of_interest", pops.popcount as "Population" from extractpartition_h_and_n ep left outer join population_table pops on ep."Year" = pops.year and ep."Age" = pops.age where pops.region ='All' and pops.sex='All' ) select * from h_and_n ;