--GDO pancreas incidence code with --AGE CTE AGE_DATA as ( select * from GDO.age)--STAGE CTE , STAGE_DATA as ( select * from GDO.stage), tumour_cohort_pancreas as (select att.tumourid , att.morph_icdo3rev2011 , diagnosisyear , CASE WHEN e.STAGE_PI_2109 = 'Y' then nvl(e.stage_best_2109,'X') WHEN e.STAGE_PI_2109 = 'N' then 'X' else 'STAGE_PI_PROBLEM!' END as stage_best , case when nhs_region_2021_name in ('East of England','Midlands') then 'Midlands and East of England' when nhs_region_2021_name in ('North West', 'North East and Yorkshire') then 'North of England' when nhs_region_2021_name in ('South West','South East') then 'South of England' else nhs_region_2021_name end as region , case when sex = 1 then 'Male' else 'Female' end as sex , age from av2019.av_tumour_england att left join av2019.av_tumour_experimental_england e on att.tumourid=e.tumourid left join AV2019.at_geography_england g on att.tumourid = g.tumourid where SITE_ICD10R4_O2_3CHAR_FROM2013 = 'C25' -- standard filters and statusofregistration like 'F' -- finalised cases only and ctry_code like 'E' -- English cases only and dedup_flag= 1 -- Excluding duplicates and age between 0 and 200 -- Sensible age and sex in (1,2) -- Sex defined -- year filter and diagnosisyear between 2013 and 2019) , statisticofinterest_pancreas as (select tumourid as tumourid_1, 1 as statisticofinterest_pancreas from tumour_cohort_pancreas), tumour_cohort_linked_pancreas AS ( SELECT * FROM tumour_cohort_pancreas tc_pancreas LEFT JOIN statisticofinterest_pancreas ON statisticofinterest_pancreas.tumourid_1 = tc_pancreas.tumourid LEFT JOIN GDO.morph_pancreas p_morph ON p_morph.MORPH_ICDO3REV2011 = tc_pancreas.MORPH_ICDO3REV2011 LEFT JOIN STAGE_DATA ON STAGE_DATA.STAGE_BEST = tc_pancreas.STAGE_BEST LEFT JOIN AGE_DATA ON AGE_DATA.AGE = tc_pancreas.AGE) , extractpartition_pancreas as ( SELECT '2013' AS "Year", 'All' AS "Tumour Type", 'All' AS "Stage", 'All' AS "Region", 'All' AS "Sex", 'All' AS "Age", SUM(statisticofinterest_pancreas) as statistic_of_interest FROM tumour_cohort_linked_pancreas WHERE DIAGNOSISYEAR = '2013' UNION ALL SELECT '2013' AS "Year", 'Carcinoma and Other' AS "Tumour Type", 'All' AS "Stage", 'All' AS "Region", 'All' AS "Sex", 'All' AS "Age", SUM(statisticofinterest_pancreas) as statistic_of_interest FROM tumour_cohort_linked_pancreas WHERE DIAGNOSISYEAR = '2013' AND MORPH_GROUP = 'Carcinoma and Other' UNION ALL SELECT '2013' AS "Year", 'Carcinoma and Other' AS "Tumour Type", 'Stage 1-2' AS "Stage", 'All' AS "Region", 'All' AS "Sex", 'All' AS "Age", SUM(statisticofinterest_pancreas) as statistic_of_interest FROM tumour_cohort_linked_pancreas WHERE DIAGNOSISYEAR = '2013' AND MORPH_GROUP = 'Carcinoma and Other' AND STAGE_SPLIT23 = 'Stage 1-2' UNION ALL SELECT '2013' AS "Year", 'Carcinoma and Other' AS "Tumour Type", 'Stage 1-2' AS "Stage", 'All' AS "Region", 'All' AS "Sex", 'Age 00-59' AS "Age", SUM(statisticofinterest_pancreas) as statistic_of_interest FROM tumour_cohort_linked_pancreas WHERE DIAGNOSISYEAR = '2013' AND MORPH_GROUP = 'Carcinoma and Other' AND STAGE_SPLIT23 = 'Stage 1-2' AND SPLIT_60_TO_80 = 'Age 00-59' UNION ALL SELECT '2013' AS "Year", 'Carcinoma and Other' AS "Tumour Type", 'Stage 1-2' AS "Stage", 'All' AS "Region", 'All' AS "Sex", 'Age 60-69' AS "Age", SUM(statisticofinterest_pancreas) as statistic_of_interest FROM tumour_cohort_linked_pancreas WHERE DIAGNOSISYEAR = '2013' AND MORPH_GROUP = 'Carcinoma and Other' AND STAGE_SPLIT23 = 'Stage 1-2' AND SPLIT_60_TO_80 = 'Age 60-69' UNION ALL SELECT '2013' AS "Year", 'Carcinoma and Other' AS "Tumour Type", 'Stage 1-2' AS "Stage", 'All' AS "Region", 'Female' AS "Sex", 'Age 60-69' AS "Age", SUM(statisticofinterest_pancreas) as statistic_of_interest FROM tumour_cohort_linked_pancreas WHERE DIAGNOSISYEAR = '2013' AND MORPH_GROUP = 'Carcinoma and Other' AND STAGE_SPLIT23 = 'Stage 1-2' AND SPLIT_60_TO_80 = 'Age 60-69' AND SEX = 'Female' UNION ALL SELECT '2013' AS "Year", 'Carcinoma and Other' AS "Tumour Type", 'Stage 1-2' AS "Stage", 'All' AS "Region", 'Male' AS "Sex", 'Age 60-69' AS "Age", SUM(statisticofinterest_pancreas) as statistic_of_interest FROM tumour_cohort_linked_pancreas WHERE DIAGNOSISYEAR = '2013' AND MORPH_GROUP = 'Carcinoma and Other' AND STAGE_SPLIT23 = 'Stage 1-2' AND SPLIT_60_TO_80 = 'Age 60-69' AND SEX = 'Male' UNION ALL SELECT '2013' AS "Year", 'Carcinoma and Other' AS "Tumour Type", 'Stage 1-2' AS "Stage", 'All' AS "Region", 'All' AS "Sex", 'Age 70-79' AS "Age", SUM(statisticofinterest_pancreas) as statistic_of_interest FROM tumour_cohort_linked_pancreas WHERE DIAGNOSISYEAR = '2013' AND MORPH_GROUP = 'Carcinoma and Other' AND STAGE_SPLIT23 = 'Stage 1-2' AND SPLIT_60_TO_80 = 'Age 70-79' UNION ALL SELECT '2013' AS "Year", 'Carcinoma and Other' AS "Tumour Type", 'Stage 1-2' AS "Stage", 'All' AS "Region", 'Female' AS "Sex", 'Age 70-79' AS "Age", SUM(statisticofinterest_pancreas) as statistic_of_interest FROM tumour_cohort_linked_pancreas WHERE DIAGNOSISYEAR = '2013' AND MORPH_GROUP = 'Carcinoma and Other' AND STAGE_SPLIT23 = 'Stage 1-2' AND SPLIT_60_TO_80 = 'Age 70-79' AND SEX = 'Female' UNION ALL SELECT '2013' AS "Year", 'Carcinoma and Other' AS "Tumour Type", 'Stage 1-2' AS "Stage", 'All' AS "Region", 'Male' AS "Sex", 'Age 70-79' AS "Age", SUM(statisticofinterest_pancreas) as statistic_of_interest FROM tumour_cohort_linked_pancreas WHERE DIAGNOSISYEAR = '2013' AND MORPH_GROUP = 'Carcinoma and Other' AND STAGE_SPLIT23 = 'Stage 1-2' AND SPLIT_60_TO_80 = 'Age 70-79' AND SEX = 'Male' UNION ALL SELECT '2013' AS "Year", 'Carcinoma and Other' AS "Tumour Type", 'Stage 1-2' AS "Stage", 'All' AS "Region", 'All' AS "Sex", 'Age 80+' AS "Age", SUM(statisticofinterest_pancreas) as statistic_of_interest FROM tumour_cohort_linked_pancreas WHERE DIAGNOSISYEAR = '2013' AND MORPH_GROUP = 'Carcinoma and Other' AND STAGE_SPLIT23 = 'Stage 1-2' AND SPLIT_60_TO_80 = 'Age 80+' UNION ALL SELECT '2013' AS "Year", 'Carcinoma and Other' AS "Tumour Type", 'Stage 1-2' AS "Stage", 'All' AS "Region", 'Female' AS "Sex", 'Age 80+' AS "Age", SUM(statisticofinterest_pancreas) as statistic_of_interest FROM tumour_cohort_linked_pancreas WHERE DIAGNOSISYEAR = '2013' AND MORPH_GROUP = 'Carcinoma and Other' AND STAGE_SPLIT23 = 'Stage 1-2' AND SPLIT_60_TO_80 = 'Age 80+' AND SEX = 'Female' UNION ALL SELECT '2013' AS "Year", 'Carcinoma and Other' AS "Tumour Type", 'Stage 1-2' AS "Stage", 'All' AS "Region", 'Male' AS "Sex", 'Age 80+' AS "Age", SUM(statisticofinterest_pancreas) as statistic_of_interest FROM tumour_cohort_linked_pancreas WHERE DIAGNOSISYEAR = '2013' AND MORPH_GROUP = 'Carcinoma and Other' AND STAGE_SPLIT23 = 'Stage 1-2' AND SPLIT_60_TO_80 = 'Age 80+' AND SEX = 'Male' UNION ALL SELECT '2013' AS "Year", 'Carcinoma and Other' AS "Tumour Type", 'Stage 3' AS "Stage", 'All' AS "Region", 'All' AS "Sex", 'All' AS "Age", SUM(statisticofinterest_pancreas) as statistic_of_interest FROM tumour_cohort_linked_pancreas WHERE DIAGNOSISYEAR = '2013' AND MORPH_GROUP = 'Carcinoma and Other' AND STAGE_SPLIT23 = 'Stage 3' UNION ALL SELECT '2013' AS "Year", 'Carcinoma and Other' AS "Tumour Type", 'Stage 3' AS "Stage", 'All' AS "Region", 'All' AS "Sex", 'Age 00-59' AS "Age", SUM(statisticofinterest_pancreas) as statistic_of_interest FROM tumour_cohort_linked_pancreas WHERE DIAGNOSISYEAR = '2013' AND MORPH_GROUP = 'Carcinoma and Other' AND STAGE_SPLIT23 = 'Stage 3' AND SPLIT_60_70 = 'Age 00-59' UNION ALL SELECT '2013' AS "Year", 'Carcinoma and Other' AS "Tumour Type", 'Stage 3' AS "Stage", 'All' AS "Region", 'All' AS "Sex", 'Age 60-69' AS "Age", SUM(statisticofinterest_pancreas) as statistic_of_interest FROM tumour_cohort_linked_pancreas WHERE DIAGNOSISYEAR = '2013' AND MORPH_GROUP = 'Carcinoma and Other' AND STAGE_SPLIT23 = 'Stage 3' AND SPLIT_60_70 = 'Age 60-69' UNION ALL SELECT '2013' AS "Year", 'Carcinoma and Other' AS "Tumour Type", 'Stage 3' AS "Stage", 'All' AS "Region", 'All' AS "Sex", 'Age 70+' AS "Age", SUM(statisticofinterest_pancreas) as statistic_of_interest FROM tumour_cohort_linked_pancreas WHERE DIAGNOSISYEAR = '2013' AND MORPH_GROUP = 'Carcinoma and Other' AND STAGE_SPLIT23 = 'Stage 3' AND SPLIT_60_70 = 'Age 70+' UNION ALL SELECT '2013' AS "Year", 'Carcinoma and Other' AS "Tumour Type", 'Stage 3' AS "Stage", 'All' AS "Region", 'Female' AS "Sex", 'Age 70+' AS "Age", SUM(statisticofinterest_pancreas) as statistic_of_interest FROM tumour_cohort_linked_pancreas WHERE DIAGNOSISYEAR = '2013' AND MORPH_GROUP = 'Carcinoma and Other' AND STAGE_SPLIT23 = 'Stage 3' AND SPLIT_60_70 = 'Age 70+' AND SEX = 'Female' UNION ALL SELECT '2013' AS "Year", 'Carcinoma and Other' AS "Tumour Type", 'Stage 3' AS "Stage", 'All' AS "Region", 'Male' AS "Sex", 'Age 70+' AS "Age", SUM(statisticofinterest_pancreas) as statistic_of_interest FROM tumour_cohort_linked_pancreas WHERE DIAGNOSISYEAR = '2013' AND MORPH_GROUP = 'Carcinoma and Other' AND STAGE_SPLIT23 = 'Stage 3' AND SPLIT_60_70 = 'Age 70+' AND SEX = 'Male' UNION ALL SELECT '2013' AS "Year", 'Carcinoma and Other' AS "Tumour Type", 'Stage 4' AS "Stage", 'All' AS "Region", 'All' AS "Sex", 'All' AS "Age", SUM(statisticofinterest_pancreas) as statistic_of_interest FROM tumour_cohort_linked_pancreas WHERE DIAGNOSISYEAR = '2013' AND MORPH_GROUP = 'Carcinoma and Other' AND STAGE_SPLIT23 = 'Stage 4' UNION ALL SELECT '2013' AS "Year", 'Carcinoma and Other' AS "Tumour Type", 'Stage 4' AS "Stage", 'All' AS "Region", 'All' AS "Sex", 'Age 00-49' AS "Age", SUM(statisticofinterest_pancreas) as statistic_of_interest FROM tumour_cohort_linked_pancreas WHERE DIAGNOSISYEAR = '2013' AND MORPH_GROUP = 'Carcinoma and Other' AND STAGE_SPLIT23 = 'Stage 4' AND SPLIT_50_TO_80 = 'Age 00-49' UNION ALL SELECT '2013' AS "Year", 'Carcinoma and Other' AS "Tumour Type", 'Stage 4' AS "Stage", 'All' AS "Region", 'All' AS "Sex", 'Age 50-59' AS "Age", SUM(statisticofinterest_pancreas) as statistic_of_interest FROM tumour_cohort_linked_pancreas WHERE DIAGNOSISYEAR = '2013' AND MORPH_GROUP = 'Carcinoma and Other' AND STAGE_SPLIT23 = 'Stage 4' AND SPLIT_50_TO_80 = 'Age 50-59' UNION ALL SELECT '2013' AS "Year", 'Carcinoma and Other' AS "Tumour Type", 'Stage 4' AS "Stage", 'All' AS "Region", 'All' AS "Sex", 'Age 60-69' AS "Age", SUM(statisticofinterest_pancreas) as statistic_of_interest FROM tumour_cohort_linked_pancreas WHERE DIAGNOSISYEAR = '2013' AND MORPH_GROUP = 'Carcinoma and Other' AND STAGE_SPLIT23 = 'Stage 4' AND SPLIT_50_TO_80 = 'Age 60-69' UNION ALL SELECT '2013' AS "Year", 'Carcinoma and Other' AS "Tumour Type", 'Stage 4' AS "Stage", 'London' AS "Region", 'All' AS "Sex", 'Age 60-69' AS "Age", SUM(statisticofinterest_pancreas) as statistic_of_interest FROM tumour_cohort_linked_pancreas WHERE DIAGNOSISYEAR = '2013' AND MORPH_GROUP = 'Carcinoma and Other' AND STAGE_SPLIT23 = 'Stage 4' AND SPLIT_50_TO_80 = 'Age 60-69' AND REGION = 'London' UNION ALL SELECT '2013' AS "Year", 'Carcinoma and Other' AS "Tumour Type", 'Stage 4' AS "Stage", 'Midlands and East of England' AS "Region", 'All' AS "Sex", 'Age 60-69' AS "Age", SUM(statisticofinterest_pancreas) as statistic_of_interest FROM tumour_cohort_linked_pancreas WHERE DIAGNOSISYEAR = '2013' AND MORPH_GROUP = 'Carcinoma and Other' AND STAGE_SPLIT23 = 'Stage 4' AND SPLIT_50_TO_80 = 'Age 60-69' AND REGION = 'Midlands and East of England' UNION ALL SELECT '2013' AS "Year", 'Carcinoma and Other' AS "Tumour Type", 'Stage 4' AS "Stage", 'Midlands and East of England' AS "Region", 'Female' AS "Sex", 'Age 60-69' AS "Age", SUM(statisticofinterest_pancreas) as statistic_of_interest FROM tumour_cohort_linked_pancreas WHERE DIAGNOSISYEAR = '2013' AND MORPH_GROUP = 'Carcinoma and Other' AND STAGE_SPLIT23 = 'Stage 4' AND SPLIT_50_TO_80 = 'Age 60-69' AND REGION = 'Midlands and East of England' AND SEX = 'Female' UNION ALL SELECT '2013' AS "Year", 'Carcinoma and Other' AS "Tumour Type", 'Stage 4' AS "Stage", 'Midlands and East of England' AS "Region", 'Male' AS "Sex", 'Age 60-69' AS "Age", SUM(statisticofinterest_pancreas) as statistic_of_interest FROM tumour_cohort_linked_pancreas WHERE DIAGNOSISYEAR = '2013' AND MORPH_GROUP = 'Carcinoma and Other' AND STAGE_SPLIT23 = 'Stage 4' AND SPLIT_50_TO_80 = 'Age 60-69' AND REGION = 'Midlands and East of England' AND SEX = 'Male' UNION ALL SELECT '2013' AS "Year", 'Carcinoma and Other' AS "Tumour Type", 'Stage 4' AS "Stage", 'North of England' AS "Region", 'All' AS "Sex", 'Age 60-69' AS "Age", SUM(statisticofinterest_pancreas) as statistic_of_interest FROM tumour_cohort_linked_pancreas WHERE DIAGNOSISYEAR = '2013' AND MORPH_GROUP = 'Carcinoma and Other' AND STAGE_SPLIT23 = 'Stage 4' AND SPLIT_50_TO_80 = 'Age 60-69' AND REGION = 'North of England' UNION ALL SELECT '2013' AS "Year", 'Carcinoma and Other' AS "Tumour Type", 'Stage 4' AS "Stage", 'North of England' AS "Region", 'Female' AS "Sex", 'Age 60-69' AS "Age", SUM(statisticofinterest_pancreas) as statistic_of_interest FROM tumour_cohort_linked_pancreas WHERE DIAGNOSISYEAR = '2013' AND MORPH_GROUP = 'Carcinoma and Other' AND STAGE_SPLIT23 = 'Stage 4' AND SPLIT_50_TO_80 = 'Age 60-69' AND REGION = 'North of England' AND SEX = 'Female' UNION ALL SELECT '2013' AS "Year", 'Carcinoma and Other' AS "Tumour Type", 'Stage 4' AS "Stage", 'North of England' AS "Region", 'Male' AS "Sex", 'Age 60-69' AS "Age", SUM(statisticofinterest_pancreas) as statistic_of_interest FROM tumour_cohort_linked_pancreas WHERE DIAGNOSISYEAR = '2013' AND MORPH_GROUP = 'Carcinoma and Other' AND STAGE_SPLIT23 = 'Stage 4' AND SPLIT_50_TO_80 = 'Age 60-69' AND REGION = 'North of England' AND SEX = 'Male' UNION ALL SELECT '2013' AS "Year", 'Carcinoma and Other' AS "Tumour Type", 'Stage 4' AS "Stage", 'South of England' AS "Region", 'All' AS "Sex", 'Age 60-69' AS "Age", SUM(statisticofinterest_pancreas) as statistic_of_interest FROM tumour_cohort_linked_pancreas WHERE DIAGNOSISYEAR = '2013' AND MORPH_GROUP = 'Carcinoma and Other' AND STAGE_SPLIT23 = 'Stage 4' AND SPLIT_50_TO_80 = 'Age 60-69' AND REGION = 'South of England' UNION ALL SELECT '2013' AS "Year", 'Carcinoma and Other' AS "Tumour Type", 'Stage 4' AS "Stage", 'South of England' AS "Region", 'Female' AS "Sex", 'Age 60-69' AS "Age", SUM(statisticofinterest_pancreas) as statistic_of_interest FROM tumour_cohort_linked_pancreas WHERE DIAGNOSISYEAR = '2013' AND MORPH_GROUP = 'Carcinoma and Other' AND STAGE_SPLIT23 = 'Stage 4' AND SPLIT_50_TO_80 = 'Age 60-69' AND REGION = 'South of England' AND SEX = 'Female' UNION ALL SELECT '2013' AS "Year", 'Carcinoma and Other' AS "Tumour Type", 'Stage 4' AS "Stage", 'South of England' AS "Region", 'Male' AS "Sex", 'Age 60-69' AS "Age", SUM(statisticofinterest_pancreas) as statistic_of_interest FROM tumour_cohort_linked_pancreas WHERE DIAGNOSISYEAR = '2013' AND MORPH_GROUP = 'Carcinoma and Other' AND STAGE_SPLIT23 = 'Stage 4' AND SPLIT_50_TO_80 = 'Age 60-69' AND REGION = 'South of England' AND SEX = 'Male' UNION ALL SELECT '2013' AS "Year", 'Carcinoma and Other' AS "Tumour Type", 'Stage 4' AS "Stage", 'All' AS "Region", 'All' AS "Sex", 'Age 70-79' AS "Age", SUM(statisticofinterest_pancreas) as statistic_of_interest FROM tumour_cohort_linked_pancreas WHERE DIAGNOSISYEAR = '2013' AND MORPH_GROUP = 'Carcinoma and Other' AND STAGE_SPLIT23 = 'Stage 4' AND SPLIT_50_TO_80 = 'Age 70-79' UNION ALL SELECT '2013' AS "Year", 'Carcinoma and Other' AS "Tumour Type", 'Stage 4' AS "Stage", 'London' AS "Region", 'All' AS "Sex", 'Age 70-79' AS "Age", SUM(statisticofinterest_pancreas) as statistic_of_interest FROM tumour_cohort_linked_pancreas WHERE DIAGNOSISYEAR = '2013' AND MORPH_GROUP = 'Carcinoma and Other' AND STAGE_SPLIT23 = 'Stage 4' AND SPLIT_50_TO_80 = 'Age 70-79' AND REGION = 'London' UNION ALL SELECT '2013' AS "Year", 'Carcinoma and Other' AS "Tumour Type", 'Stage 4' AS "Stage", 'Midlands and East of England' AS "Region", 'All' AS "Sex", 'Age 70-79' AS "Age", SUM(statisticofinterest_pancreas) as statistic_of_interest FROM tumour_cohort_linked_pancreas WHERE DIAGNOSISYEAR = '2013' AND MORPH_GROUP = 'Carcinoma and Other' AND STAGE_SPLIT23 = 'Stage 4' AND SPLIT_50_TO_80 = 'Age 70-79' AND REGION = 'Midlands and East of England' UNION ALL SELECT '2013' AS "Year", 'Carcinoma and Other' AS "Tumour Type", 'Stage 4' AS "Stage", 'Midlands and East of England' AS "Region", 'Female' AS "Sex", 'Age 70-79' AS "Age", SUM(statisticofinterest_pancreas) as statistic_of_interest FROM tumour_cohort_linked_pancreas WHERE DIAGNOSISYEAR = '2013' AND MORPH_GROUP = 'Carcinoma and Other' AND STAGE_SPLIT23 = 'Stage 4' AND SPLIT_50_TO_80 = 'Age 70-79' AND REGION = 'Midlands and East of England' AND SEX = 'Female' UNION ALL SELECT '2013' AS "Year", 'Carcinoma and Other' AS "Tumour Type", 'Stage 4' AS "Stage", 'Midlands and East of England' AS "Region", 'Male' AS "Sex", 'Age 70-79' AS "Age", SUM(statisticofinterest_pancreas) as statistic_of_interest FROM tumour_cohort_linked_pancreas WHERE DIAGNOSISYEAR = '2013' AND MORPH_GROUP = 'Carcinoma and Other' AND STAGE_SPLIT23 = 'Stage 4' AND SPLIT_50_TO_80 = 'Age 70-79' AND REGION = 'Midlands and East of England' AND SEX = 'Male' UNION ALL SELECT '2013' AS "Year", 'Carcinoma and Other' AS "Tumour Type", 'Stage 4' AS "Stage", 'North of England' AS "Region", 'All' AS "Sex", 'Age 70-79' AS "Age", SUM(statisticofinterest_pancreas) as statistic_of_interest FROM tumour_cohort_linked_pancreas WHERE DIAGNOSISYEAR = '2013' AND MORPH_GROUP = 'Carcinoma and Other' AND STAGE_SPLIT23 = 'Stage 4' AND SPLIT_50_TO_80 = 'Age 70-79' AND REGION = 'North of England' UNION ALL SELECT '2013' AS "Year", 'Carcinoma and Other' AS "Tumour Type", 'Stage 4' AS "Stage", 'North of England' AS "Region", 'Female' AS "Sex", 'Age 70-79' AS "Age", SUM(statisticofinterest_pancreas) as statistic_of_interest FROM tumour_cohort_linked_pancreas WHERE DIAGNOSISYEAR = '2013' AND MORPH_GROUP = 'Carcinoma and Other' AND STAGE_SPLIT23 = 'Stage 4' AND SPLIT_50_TO_80 = 'Age 70-79' AND REGION = 'North of England' AND SEX = 'Female' UNION ALL SELECT '2013' AS "Year", 'Carcinoma and Other' AS "Tumour Type", 'Stage 4' AS "Stage", 'North of England' AS "Region", 'Male' AS "Sex", 'Age 70-79' AS "Age", SUM(statisticofinterest_pancreas) as statistic_of_interest FROM tumour_cohort_linked_pancreas WHERE DIAGNOSISYEAR = '2013' AND MORPH_GROUP = 'Carcinoma and Other' AND STAGE_SPLIT23 = 'Stage 4' AND SPLIT_50_TO_80 = 'Age 70-79' AND REGION = 'North of England' AND SEX = 'Male' UNION ALL SELECT '2013' AS "Year", 'Carcinoma and Other' AS "Tumour Type", 'Stage 4' AS "Stage", 'South of England' AS "Region", 'All' AS "Sex", 'Age 70-79' AS "Age", SUM(statisticofinterest_pancreas) as statistic_of_interest FROM tumour_cohort_linked_pancreas WHERE DIAGNOSISYEAR = '2013' AND MORPH_GROUP = 'Carcinoma and Other' AND STAGE_SPLIT23 = 'Stage 4' AND SPLIT_50_TO_80 = 'Age 70-79' AND REGION = 'South of England' UNION ALL SELECT '2013' AS "Year", 'Carcinoma and Other' AS "Tumour Type", 'Stage 4' AS "Stage", 'South of England' AS "Region", 'Female' AS "Sex", 'Age 70-79' AS "Age", SUM(statisticofinterest_pancreas) as statistic_of_interest FROM tumour_cohort_linked_pancreas WHERE DIAGNOSISYEAR = '2013' AND MORPH_GROUP = 'Carcinoma and Other' AND STAGE_SPLIT23 = 'Stage 4' AND SPLIT_50_TO_80 = 'Age 70-79' AND REGION = 'South of England' AND SEX = 'Female' UNION ALL SELECT '2013' AS "Year", 'Carcinoma and Other' AS "Tumour Type", 'Stage 4' AS "Stage", 'South of England' AS "Region", 'Male' AS "Sex", 'Age 70-79' AS "Age", SUM(statisticofinterest_pancreas) as statistic_of_interest FROM tumour_cohort_linked_pancreas WHERE DIAGNOSISYEAR = '2013' AND MORPH_GROUP = 'Carcinoma and Other' AND STAGE_SPLIT23 = 'Stage 4' AND SPLIT_50_TO_80 = 'Age 70-79' AND REGION = 'South of England' AND SEX = 'Male' UNION ALL SELECT '2013' AS "Year", 'Carcinoma and Other' AS "Tumour Type", 'Stage 4' AS "Stage", 'All' AS "Region", 'All' AS "Sex", 'Age 80+' AS "Age", SUM(statisticofinterest_pancreas) as statistic_of_interest FROM tumour_cohort_linked_pancreas WHERE DIAGNOSISYEAR = '2013' AND MORPH_GROUP = 'Carcinoma and Other' AND STAGE_SPLIT23 = 'Stage 4' AND SPLIT_50_TO_80 = 'Age 80+' UNION ALL SELECT '2013' AS "Year", 'Carcinoma and Other' AS "Tumour Type", 'Stage 4' AS "Stage", 'London' AS "Region", 'All' AS "Sex", 'Age 80+' AS "Age", SUM(statisticofinterest_pancreas) as statistic_of_interest FROM tumour_cohort_linked_pancreas WHERE DIAGNOSISYEAR = '2013' AND MORPH_GROUP = 'Carcinoma and Other' AND STAGE_SPLIT23 = 'Stage 4' AND SPLIT_50_TO_80 = 'Age 80+' AND REGION = 'London' UNION ALL SELECT '2013' AS "Year", 'Carcinoma and Other' AS "Tumour Type", 'Stage 4' AS "Stage", 'Midlands and East of England' AS "Region", 'All' AS "Sex", 'Age 80+' AS "Age", SUM(statisticofinterest_pancreas) as statistic_of_interest FROM tumour_cohort_linked_pancreas WHERE DIAGNOSISYEAR = '2013' AND MORPH_GROUP = 'Carcinoma and Other' AND STAGE_SPLIT23 = 'Stage 4' AND SPLIT_50_TO_80 = 'Age 80+' AND REGION = 'Midlands and East of England' UNION ALL SELECT '2013' AS "Year", 'Carcinoma and Other' AS "Tumour Type", 'Stage 4' AS "Stage", 'Midlands and East of England' AS "Region", 'Female' AS "Sex", 'Age 80+' AS "Age", SUM(statisticofinterest_pancreas) as statistic_of_interest FROM tumour_cohort_linked_pancreas WHERE DIAGNOSISYEAR = '2013' AND MORPH_GROUP = 'Carcinoma and Other' AND STAGE_SPLIT23 = 'Stage 4' AND SPLIT_50_TO_80 = 'Age 80+' AND REGION = 'Midlands and East of England' AND SEX = 'Female' UNION ALL SELECT '2013' AS "Year", 'Carcinoma and Other' AS "Tumour Type", 'Stage 4' AS "Stage", 'Midlands and East of England' AS "Region", 'Male' AS "Sex", 'Age 80+' AS "Age", SUM(statisticofinterest_pancreas) as statistic_of_interest FROM tumour_cohort_linked_pancreas WHERE DIAGNOSISYEAR = '2013' AND MORPH_GROUP = 'Carcinoma and Other' AND STAGE_SPLIT23 = 'Stage 4' AND SPLIT_50_TO_80 = 'Age 80+' AND REGION = 'Midlands and East of England' AND SEX = 'Male' UNION ALL SELECT '2013' AS "Year", 'Carcinoma and Other' AS "Tumour Type", 'Stage 4' AS "Stage", 'North of England' AS "Region", 'All' AS "Sex", 'Age 80+' AS "Age", SUM(statisticofinterest_pancreas) as statistic_of_interest FROM tumour_cohort_linked_pancreas WHERE DIAGNOSISYEAR = '2013' AND MORPH_GROUP = 'Carcinoma and Other' AND STAGE_SPLIT23 = 'Stage 4' AND SPLIT_50_TO_80 = 'Age 80+' AND REGION = 'North of England' UNION ALL SELECT '2013' AS "Year", 'Carcinoma and Other' AS "Tumour Type", 'Stage 4' AS "Stage", 'North of England' AS "Region", 'Female' AS "Sex", 'Age 80+' AS "Age", SUM(statisticofinterest_pancreas) as statistic_of_interest FROM tumour_cohort_linked_pancreas WHERE DIAGNOSISYEAR = '2013' AND MORPH_GROUP = 'Carcinoma and Other' AND STAGE_SPLIT23 = 'Stage 4' AND SPLIT_50_TO_80 = 'Age 80+' AND REGION = 'North of England' AND SEX = 'Female' UNION ALL SELECT '2013' AS "Year", 'Carcinoma and Other' AS "Tumour Type", 'Stage 4' AS "Stage", 'North of England' AS "Region", 'Male' AS "Sex", 'Age 80+' AS "Age", SUM(statisticofinterest_pancreas) as statistic_of_interest FROM tumour_cohort_linked_pancreas WHERE DIAGNOSISYEAR = '2013' AND MORPH_GROUP = 'Carcinoma and Other' AND STAGE_SPLIT23 = 'Stage 4' AND SPLIT_50_TO_80 = 'Age 80+' AND REGION = 'North of England' AND SEX = 'Male' UNION ALL SELECT '2013' AS "Year", 'Carcinoma and Other' AS "Tumour Type", 'Stage 4' AS "Stage", 'South of England' AS "Region", 'All' AS "Sex", 'Age 80+' AS "Age", SUM(statisticofinterest_pancreas) as statistic_of_interest FROM tumour_cohort_linked_pancreas WHERE DIAGNOSISYEAR = '2013' AND MORPH_GROUP = 'Carcinoma and Other' AND STAGE_SPLIT23 = 'Stage 4' AND SPLIT_50_TO_80 = 'Age 80+' AND REGION = 'South of England' UNION ALL SELECT '2013' AS "Year", 'Carcinoma and Other' AS "Tumour Type", 'Stage 4' AS "Stage", 'South of England' AS "Region", 'Female' AS "Sex", 'Age 80+' AS "Age", SUM(statisticofinterest_pancreas) as statistic_of_interest FROM tumour_cohort_linked_pancreas WHERE DIAGNOSISYEAR = '2013' AND MORPH_GROUP = 'Carcinoma and Other' AND STAGE_SPLIT23 = 'Stage 4' AND SPLIT_50_TO_80 = 'Age 80+' AND REGION = 'South of England' AND SEX = 'Female' UNION ALL SELECT '2013' AS "Year", 'Carcinoma and Other' AS "Tumour Type", 'Stage 4' AS "Stage", 'South of England' AS "Region", 'Male' AS "Sex", 'Age 80+' AS "Age", SUM(statisticofinterest_pancreas) as statistic_of_interest FROM tumour_cohort_linked_pancreas WHERE DIAGNOSISYEAR = '2013' AND MORPH_GROUP = 'Carcinoma and Other' AND STAGE_SPLIT23 = 'Stage 4' AND SPLIT_50_TO_80 = 'Age 80+' AND REGION = 'South of England' AND SEX = 'Male' UNION ALL SELECT '2013' AS "Year", 'Carcinoma and Other' AS "Tumour Type", 'Stage unknown' AS "Stage", 'All' AS "Region", 'All' AS "Sex", 'All' AS "Age", SUM(statisticofinterest_pancreas) as statistic_of_interest FROM tumour_cohort_linked_pancreas WHERE DIAGNOSISYEAR = '2013' AND MORPH_GROUP = 'Carcinoma and Other' AND STAGE_SPLIT23 = 'Stage unknown' UNION ALL SELECT '2013' AS "Year", 'Carcinoma and Other' AS "Tumour Type", 'Stage unknown' AS "Stage", 'All' AS "Region", 'All' AS "Sex", 'Age 00-59' AS "Age", SUM(statisticofinterest_pancreas) as statistic_of_interest FROM tumour_cohort_linked_pancreas WHERE DIAGNOSISYEAR = '2013' AND MORPH_GROUP = 'Carcinoma and Other' AND STAGE_SPLIT23 = 'Stage unknown' AND SPLIT_60_TO_80 = 'Age 00-59' UNION ALL SELECT '2013' AS "Year", 'Carcinoma and Other' AS "Tumour Type", 'Stage unknown' AS "Stage", 'All' AS "Region", 'All' AS "Sex", 'Age 60-69' AS "Age", SUM(statisticofinterest_pancreas) as statistic_of_interest FROM tumour_cohort_linked_pancreas WHERE DIAGNOSISYEAR = '2013' AND MORPH_GROUP = 'Carcinoma and Other' AND STAGE_SPLIT23 = 'Stage unknown' AND SPLIT_60_TO_80 = 'Age 60-69' UNION ALL SELECT '2013' AS "Year", 'Carcinoma and Other' AS "Tumour Type", 'Stage unknown' AS "Stage", 'All' AS "Region", 'Female' AS "Sex", 'Age 60-69' AS "Age", SUM(statisticofinterest_pancreas) as statistic_of_interest FROM tumour_cohort_linked_pancreas WHERE DIAGNOSISYEAR = '2013' AND MORPH_GROUP = 'Carcinoma and Other' AND STAGE_SPLIT23 = 'Stage unknown' AND SPLIT_60_TO_80 = 'Age 60-69' AND SEX = 'Female' UNION ALL SELECT '2013' AS "Year", 'Carcinoma and Other' AS "Tumour Type", 'Stage unknown' AS "Stage", 'All' AS "Region", 'Male' AS "Sex", 'Age 60-69' AS "Age", SUM(statisticofinterest_pancreas) as statistic_of_interest FROM tumour_cohort_linked_pancreas WHERE DIAGNOSISYEAR = '2013' AND MORPH_GROUP = 'Carcinoma and Other' AND STAGE_SPLIT23 = 'Stage unknown' AND SPLIT_60_TO_80 = 'Age 60-69' AND SEX = 'Male' UNION ALL SELECT '2013' AS "Year", 'Carcinoma and Other' AS "Tumour Type", 'Stage unknown' AS "Stage", 'All' AS "Region", 'All' AS "Sex", 'Age 70-79' AS "Age", SUM(statisticofinterest_pancreas) as statistic_of_interest FROM tumour_cohort_linked_pancreas WHERE DIAGNOSISYEAR = '2013' AND MORPH_GROUP = 'Carcinoma and Other' AND STAGE_SPLIT23 = 'Stage unknown' AND SPLIT_60_TO_80 = 'Age 70-79' UNION ALL SELECT '2013' AS "Year", 'Carcinoma and Other' AS "Tumour Type", 'Stage unknown' AS "Stage", 'All' AS "Region", 'Female' AS "Sex", 'Age 70-79' AS "Age", SUM(statisticofinterest_pancreas) as statistic_of_interest FROM tumour_cohort_linked_pancreas WHERE DIAGNOSISYEAR = '2013' AND MORPH_GROUP = 'Carcinoma and Other' AND STAGE_SPLIT23 = 'Stage unknown' AND SPLIT_60_TO_80 = 'Age 70-79' AND SEX = 'Female' UNION ALL SELECT '2013' AS "Year", 'Carcinoma and Other' AS "Tumour Type", 'Stage unknown' AS "Stage", 'All' AS "Region", 'Male' AS "Sex", 'Age 70-79' AS "Age", SUM(statisticofinterest_pancreas) as statistic_of_interest FROM tumour_cohort_linked_pancreas WHERE DIAGNOSISYEAR = '2013' AND MORPH_GROUP = 'Carcinoma and Other' AND STAGE_SPLIT23 = 'Stage unknown' AND SPLIT_60_TO_80 = 'Age 70-79' AND SEX = 'Male' UNION ALL SELECT '2013' AS "Year", 'Carcinoma and Other' AS "Tumour Type", 'Stage unknown' AS "Stage", 'All' AS "Region", 'All' AS "Sex", 'Age 80+' AS "Age", SUM(statisticofinterest_pancreas) as statistic_of_interest FROM tumour_cohort_linked_pancreas WHERE DIAGNOSISYEAR = '2013' AND MORPH_GROUP = 'Carcinoma and Other' AND STAGE_SPLIT23 = 'Stage unknown' AND SPLIT_60_TO_80 = 'Age 80+' UNION ALL SELECT '2013' AS "Year", 'Carcinoma and Other' AS "Tumour Type", 'Stage unknown' AS "Stage", 'All' AS "Region", 'Female' AS "Sex", 'Age 80+' AS "Age", SUM(statisticofinterest_pancreas) as statistic_of_interest FROM tumour_cohort_linked_pancreas WHERE DIAGNOSISYEAR = '2013' AND MORPH_GROUP = 'Carcinoma and Other' AND STAGE_SPLIT23 = 'Stage unknown' AND SPLIT_60_TO_80 = 'Age 80+' AND SEX = 'Female' UNION ALL SELECT '2013' AS "Year", 'Carcinoma and Other' AS "Tumour Type", 'Stage unknown' AS "Stage", 'All' AS "Region", 'Male' AS "Sex", 'Age 80+' AS "Age", SUM(statisticofinterest_pancreas) as statistic_of_interest FROM tumour_cohort_linked_pancreas WHERE DIAGNOSISYEAR = '2013' AND MORPH_GROUP = 'Carcinoma and Other' AND STAGE_SPLIT23 = 'Stage unknown' AND SPLIT_60_TO_80 = 'Age 80+' AND SEX = 'Male' UNION ALL SELECT '2013' AS "Year", 'Neuroendocrine' AS "Tumour Type", 'All' AS "Stage", 'All' AS "Region", 'All' AS "Sex", 'All' AS "Age", SUM(statisticofinterest_pancreas) as statistic_of_interest FROM tumour_cohort_linked_pancreas WHERE DIAGNOSISYEAR = '2013' AND MORPH_GROUP = 'Neuroendocrine' UNION ALL SELECT '2013' AS "Year", 'Neuroendocrine' AS "Tumour Type", 'All' AS "Stage", 'All' AS "Region", 'All' AS "Sex", 'Age 00-49' AS "Age", SUM(statisticofinterest_pancreas) as statistic_of_interest FROM tumour_cohort_linked_pancreas WHERE DIAGNOSISYEAR = '2013' AND MORPH_GROUP = 'Neuroendocrine' AND SPLIT_50_TO_70 = 'Age 00-49' UNION ALL SELECT '2013' AS "Year", 'Neuroendocrine' AS "Tumour Type", 'All' AS "Stage", 'All' AS "Region", 'All' AS "Sex", 'Age 50-59' AS "Age", SUM(statisticofinterest_pancreas) as statistic_of_interest FROM tumour_cohort_linked_pancreas WHERE DIAGNOSISYEAR = '2013' AND MORPH_GROUP = 'Neuroendocrine' AND SPLIT_50_TO_70 = 'Age 50-59' UNION ALL SELECT '2013' AS "Year", 'Neuroendocrine' AS "Tumour Type", 'All' AS "Stage", 'All' AS "Region", 'All' AS "Sex", 'Age 60-69' AS "Age", SUM(statisticofinterest_pancreas) as statistic_of_interest FROM tumour_cohort_linked_pancreas WHERE DIAGNOSISYEAR = '2013' AND MORPH_GROUP = 'Neuroendocrine' AND SPLIT_50_TO_70 = 'Age 60-69' UNION ALL SELECT '2013' AS "Year", 'Neuroendocrine' AS "Tumour Type", 'All' AS "Stage", 'All' AS "Region", 'All' AS "Sex", 'Age 70+' AS "Age", SUM(statisticofinterest_pancreas) as statistic_of_interest FROM tumour_cohort_linked_pancreas WHERE DIAGNOSISYEAR = '2013' AND MORPH_GROUP = 'Neuroendocrine' AND SPLIT_50_TO_70 = 'Age 70+' UNION ALL SELECT '2014' AS "Year", 'All' AS "Tumour Type", 'All' AS "Stage", 'All' AS "Region", 'All' AS "Sex", 'All' AS "Age", SUM(statisticofinterest_pancreas) as statistic_of_interest FROM tumour_cohort_linked_pancreas WHERE DIAGNOSISYEAR = '2014' UNION ALL SELECT '2014' AS "Year", 'Carcinoma and Other' AS "Tumour Type", 'All' AS "Stage", 'All' AS "Region", 'All' AS "Sex", 'All' AS "Age", SUM(statisticofinterest_pancreas) as statistic_of_interest FROM tumour_cohort_linked_pancreas WHERE DIAGNOSISYEAR = '2014' AND MORPH_GROUP = 'Carcinoma and Other' UNION ALL SELECT '2014' AS "Year", 'Carcinoma and Other' AS "Tumour Type", 'Stage 1-2' AS "Stage", 'All' AS "Region", 'All' AS "Sex", 'All' AS "Age", SUM(statisticofinterest_pancreas) as statistic_of_interest FROM tumour_cohort_linked_pancreas WHERE DIAGNOSISYEAR = '2014' AND MORPH_GROUP = 'Carcinoma and Other' AND STAGE_SPLIT23 = 'Stage 1-2' UNION ALL SELECT '2014' AS "Year", 'Carcinoma and Other' AS "Tumour Type", 'Stage 1-2' AS "Stage", 'All' AS "Region", 'All' AS "Sex", 'Age 00-59' AS "Age", SUM(statisticofinterest_pancreas) as statistic_of_interest FROM tumour_cohort_linked_pancreas WHERE DIAGNOSISYEAR = '2014' AND MORPH_GROUP = 'Carcinoma and Other' AND STAGE_SPLIT23 = 'Stage 1-2' AND SPLIT_60_TO_80 = 'Age 00-59' UNION ALL SELECT '2014' AS "Year", 'Carcinoma and Other' AS "Tumour Type", 'Stage 1-2' AS "Stage", 'All' AS "Region", 'All' AS "Sex", 'Age 60-69' AS "Age", SUM(statisticofinterest_pancreas) as statistic_of_interest FROM tumour_cohort_linked_pancreas WHERE DIAGNOSISYEAR = '2014' AND MORPH_GROUP = 'Carcinoma and Other' AND STAGE_SPLIT23 = 'Stage 1-2' AND SPLIT_60_TO_80 = 'Age 60-69' UNION ALL SELECT '2014' AS "Year", 'Carcinoma and Other' AS "Tumour Type", 'Stage 1-2' AS "Stage", 'All' AS "Region", 'Female' AS "Sex", 'Age 60-69' AS "Age", SUM(statisticofinterest_pancreas) as statistic_of_interest FROM tumour_cohort_linked_pancreas WHERE DIAGNOSISYEAR = '2014' AND MORPH_GROUP = 'Carcinoma and Other' AND STAGE_SPLIT23 = 'Stage 1-2' AND SPLIT_60_TO_80 = 'Age 60-69' AND SEX = 'Female' UNION ALL SELECT '2014' AS "Year", 'Carcinoma and Other' AS "Tumour Type", 'Stage 1-2' AS "Stage", 'All' AS "Region", 'Male' AS "Sex", 'Age 60-69' AS "Age", SUM(statisticofinterest_pancreas) as statistic_of_interest FROM tumour_cohort_linked_pancreas WHERE DIAGNOSISYEAR = '2014' AND MORPH_GROUP = 'Carcinoma and Other' AND STAGE_SPLIT23 = 'Stage 1-2' AND SPLIT_60_TO_80 = 'Age 60-69' AND SEX = 'Male' UNION ALL SELECT '2014' AS "Year", 'Carcinoma and Other' AS "Tumour Type", 'Stage 1-2' AS "Stage", 'All' AS "Region", 'All' AS "Sex", 'Age 70-79' AS "Age", SUM(statisticofinterest_pancreas) as statistic_of_interest FROM tumour_cohort_linked_pancreas WHERE DIAGNOSISYEAR = '2014' AND MORPH_GROUP = 'Carcinoma and Other' AND STAGE_SPLIT23 = 'Stage 1-2' AND SPLIT_60_TO_80 = 'Age 70-79' UNION ALL SELECT '2014' AS "Year", 'Carcinoma and Other' AS "Tumour Type", 'Stage 1-2' AS "Stage", 'All' AS "Region", 'Female' AS "Sex", 'Age 70-79' AS "Age", SUM(statisticofinterest_pancreas) as statistic_of_interest FROM tumour_cohort_linked_pancreas WHERE DIAGNOSISYEAR = '2014' AND MORPH_GROUP = 'Carcinoma and Other' AND STAGE_SPLIT23 = 'Stage 1-2' AND SPLIT_60_TO_80 = 'Age 70-79' AND SEX = 'Female' UNION ALL SELECT '2014' AS "Year", 'Carcinoma and Other' AS "Tumour Type", 'Stage 1-2' AS "Stage", 'All' AS "Region", 'Male' AS "Sex", 'Age 70-79' AS "Age", SUM(statisticofinterest_pancreas) as statistic_of_interest FROM tumour_cohort_linked_pancreas WHERE DIAGNOSISYEAR = '2014' AND MORPH_GROUP = 'Carcinoma and Other' AND STAGE_SPLIT23 = 'Stage 1-2' AND SPLIT_60_TO_80 = 'Age 70-79' AND SEX = 'Male' UNION ALL SELECT '2014' AS "Year", 'Carcinoma and Other' AS "Tumour Type", 'Stage 1-2' AS "Stage", 'All' AS "Region", 'All' AS "Sex", 'Age 80+' AS "Age", SUM(statisticofinterest_pancreas) as statistic_of_interest FROM tumour_cohort_linked_pancreas WHERE DIAGNOSISYEAR = '2014' AND MORPH_GROUP = 'Carcinoma and Other' AND STAGE_SPLIT23 = 'Stage 1-2' AND SPLIT_60_TO_80 = 'Age 80+' UNION ALL SELECT '2014' AS "Year", 'Carcinoma and Other' AS "Tumour Type", 'Stage 1-2' AS "Stage", 'All' AS "Region", 'Female' AS "Sex", 'Age 80+' AS "Age", SUM(statisticofinterest_pancreas) as statistic_of_interest FROM tumour_cohort_linked_pancreas WHERE DIAGNOSISYEAR = '2014' AND MORPH_GROUP = 'Carcinoma and Other' AND STAGE_SPLIT23 = 'Stage 1-2' AND SPLIT_60_TO_80 = 'Age 80+' AND SEX = 'Female' UNION ALL SELECT '2014' AS "Year", 'Carcinoma and Other' AS "Tumour Type", 'Stage 1-2' AS "Stage", 'All' AS "Region", 'Male' AS "Sex", 'Age 80+' AS "Age", SUM(statisticofinterest_pancreas) as statistic_of_interest FROM tumour_cohort_linked_pancreas WHERE DIAGNOSISYEAR = '2014' AND MORPH_GROUP = 'Carcinoma and Other' AND STAGE_SPLIT23 = 'Stage 1-2' AND SPLIT_60_TO_80 = 'Age 80+' AND SEX = 'Male' UNION ALL SELECT '2014' AS "Year", 'Carcinoma and Other' AS "Tumour Type", 'Stage 3' AS "Stage", 'All' AS "Region", 'All' AS "Sex", 'All' AS "Age", SUM(statisticofinterest_pancreas) as statistic_of_interest FROM tumour_cohort_linked_pancreas WHERE DIAGNOSISYEAR = '2014' AND MORPH_GROUP = 'Carcinoma and Other' AND STAGE_SPLIT23 = 'Stage 3' UNION ALL SELECT '2014' AS "Year", 'Carcinoma and Other' AS "Tumour Type", 'Stage 3' AS "Stage", 'All' AS "Region", 'All' AS "Sex", 'Age 00-59' AS "Age", SUM(statisticofinterest_pancreas) as statistic_of_interest FROM tumour_cohort_linked_pancreas WHERE DIAGNOSISYEAR = '2014' AND MORPH_GROUP = 'Carcinoma and Other' AND STAGE_SPLIT23 = 'Stage 3' AND SPLIT_60_70 = 'Age 00-59' UNION ALL SELECT '2014' AS "Year", 'Carcinoma and Other' AS "Tumour Type", 'Stage 3' AS "Stage", 'All' AS "Region", 'All' AS "Sex", 'Age 60-69' AS "Age", SUM(statisticofinterest_pancreas) as statistic_of_interest FROM tumour_cohort_linked_pancreas WHERE DIAGNOSISYEAR = '2014' AND MORPH_GROUP = 'Carcinoma and Other' AND STAGE_SPLIT23 = 'Stage 3' AND SPLIT_60_70 = 'Age 60-69' UNION ALL SELECT '2014' AS "Year", 'Carcinoma and Other' AS "Tumour Type", 'Stage 3' AS "Stage", 'All' AS "Region", 'All' AS "Sex", 'Age 70+' AS "Age", SUM(statisticofinterest_pancreas) as statistic_of_interest FROM tumour_cohort_linked_pancreas WHERE DIAGNOSISYEAR = '2014' AND MORPH_GROUP = 'Carcinoma and Other' AND STAGE_SPLIT23 = 'Stage 3' AND SPLIT_60_70 = 'Age 70+' UNION ALL SELECT '2014' AS "Year", 'Carcinoma and Other' AS "Tumour Type", 'Stage 3' AS "Stage", 'All' AS "Region", 'Female' AS "Sex", 'Age 70+' AS "Age", SUM(statisticofinterest_pancreas) as statistic_of_interest FROM tumour_cohort_linked_pancreas WHERE DIAGNOSISYEAR = '2014' AND MORPH_GROUP = 'Carcinoma and Other' AND STAGE_SPLIT23 = 'Stage 3' AND SPLIT_60_70 = 'Age 70+' AND SEX = 'Female' UNION ALL SELECT '2014' AS "Year", 'Carcinoma and Other' AS "Tumour Type", 'Stage 3' AS "Stage", 'All' AS "Region", 'Male' AS "Sex", 'Age 70+' AS "Age", SUM(statisticofinterest_pancreas) as statistic_of_interest FROM tumour_cohort_linked_pancreas WHERE DIAGNOSISYEAR = '2014' AND MORPH_GROUP = 'Carcinoma and Other' AND STAGE_SPLIT23 = 'Stage 3' AND SPLIT_60_70 = 'Age 70+' AND SEX = 'Male' UNION ALL SELECT '2014' AS "Year", 'Carcinoma and Other' AS "Tumour Type", 'Stage 4' AS "Stage", 'All' AS "Region", 'All' AS "Sex", 'All' AS "Age", SUM(statisticofinterest_pancreas) as statistic_of_interest FROM tumour_cohort_linked_pancreas WHERE DIAGNOSISYEAR = '2014' AND MORPH_GROUP = 'Carcinoma and Other' AND STAGE_SPLIT23 = 'Stage 4' UNION ALL SELECT '2014' AS "Year", 'Carcinoma and Other' AS "Tumour Type", 'Stage 4' AS "Stage", 'All' AS "Region", 'All' AS "Sex", 'Age 00-49' AS "Age", SUM(statisticofinterest_pancreas) as statistic_of_interest FROM tumour_cohort_linked_pancreas WHERE DIAGNOSISYEAR = '2014' AND MORPH_GROUP = 'Carcinoma and Other' AND STAGE_SPLIT23 = 'Stage 4' AND SPLIT_50_TO_80 = 'Age 00-49' UNION ALL SELECT '2014' AS "Year", 'Carcinoma and Other' AS "Tumour Type", 'Stage 4' AS "Stage", 'All' AS "Region", 'All' AS "Sex", 'Age 50-59' AS "Age", SUM(statisticofinterest_pancreas) as statistic_of_interest FROM tumour_cohort_linked_pancreas WHERE DIAGNOSISYEAR = '2014' AND MORPH_GROUP = 'Carcinoma and Other' AND STAGE_SPLIT23 = 'Stage 4' AND SPLIT_50_TO_80 = 'Age 50-59' UNION ALL SELECT '2014' AS "Year", 'Carcinoma and Other' AS "Tumour Type", 'Stage 4' AS "Stage", 'All' AS "Region", 'All' AS "Sex", 'Age 60-69' AS "Age", SUM(statisticofinterest_pancreas) as statistic_of_interest FROM tumour_cohort_linked_pancreas WHERE DIAGNOSISYEAR = '2014' AND MORPH_GROUP = 'Carcinoma and Other' AND STAGE_SPLIT23 = 'Stage 4' AND SPLIT_50_TO_80 = 'Age 60-69' UNION ALL SELECT '2014' AS "Year", 'Carcinoma and Other' AS "Tumour Type", 'Stage 4' AS "Stage", 'London' AS "Region", 'All' AS "Sex", 'Age 60-69' AS "Age", SUM(statisticofinterest_pancreas) as statistic_of_interest FROM tumour_cohort_linked_pancreas WHERE DIAGNOSISYEAR = '2014' AND MORPH_GROUP = 'Carcinoma and Other' AND STAGE_SPLIT23 = 'Stage 4' AND SPLIT_50_TO_80 = 'Age 60-69' AND REGION = 'London' UNION ALL SELECT '2014' AS "Year", 'Carcinoma and Other' AS "Tumour Type", 'Stage 4' AS "Stage", 'Midlands and East of England' AS "Region", 'All' AS "Sex", 'Age 60-69' AS "Age", SUM(statisticofinterest_pancreas) as statistic_of_interest FROM tumour_cohort_linked_pancreas WHERE DIAGNOSISYEAR = '2014' AND MORPH_GROUP = 'Carcinoma and Other' AND STAGE_SPLIT23 = 'Stage 4' AND SPLIT_50_TO_80 = 'Age 60-69' AND REGION = 'Midlands and East of England' UNION ALL SELECT '2014' AS "Year", 'Carcinoma and Other' AS "Tumour Type", 'Stage 4' AS "Stage", 'Midlands and East of England' AS "Region", 'Female' AS "Sex", 'Age 60-69' AS "Age", SUM(statisticofinterest_pancreas) as statistic_of_interest FROM tumour_cohort_linked_pancreas WHERE DIAGNOSISYEAR = '2014' AND MORPH_GROUP = 'Carcinoma and Other' AND STAGE_SPLIT23 = 'Stage 4' AND SPLIT_50_TO_80 = 'Age 60-69' AND REGION = 'Midlands and East of England' AND SEX = 'Female' UNION ALL SELECT '2014' AS "Year", 'Carcinoma and Other' AS "Tumour Type", 'Stage 4' AS "Stage", 'Midlands and East of England' AS "Region", 'Male' AS "Sex", 'Age 60-69' AS "Age", SUM(statisticofinterest_pancreas) as statistic_of_interest FROM tumour_cohort_linked_pancreas WHERE DIAGNOSISYEAR = '2014' AND MORPH_GROUP = 'Carcinoma and Other' AND STAGE_SPLIT23 = 'Stage 4' AND SPLIT_50_TO_80 = 'Age 60-69' AND REGION = 'Midlands and East of England' AND SEX = 'Male' UNION ALL SELECT '2014' AS "Year", 'Carcinoma and Other' AS "Tumour Type", 'Stage 4' AS "Stage", 'North of England' AS "Region", 'All' AS "Sex", 'Age 60-69' AS "Age", SUM(statisticofinterest_pancreas) as statistic_of_interest FROM tumour_cohort_linked_pancreas WHERE DIAGNOSISYEAR = '2014' AND MORPH_GROUP = 'Carcinoma and Other' AND STAGE_SPLIT23 = 'Stage 4' AND SPLIT_50_TO_80 = 'Age 60-69' AND REGION = 'North of England' UNION ALL SELECT '2014' AS "Year", 'Carcinoma and Other' AS "Tumour Type", 'Stage 4' AS "Stage", 'North of England' AS "Region", 'Female' AS "Sex", 'Age 60-69' AS "Age", SUM(statisticofinterest_pancreas) as statistic_of_interest FROM tumour_cohort_linked_pancreas WHERE DIAGNOSISYEAR = '2014' AND MORPH_GROUP = 'Carcinoma and Other' AND STAGE_SPLIT23 = 'Stage 4' AND SPLIT_50_TO_80 = 'Age 60-69' AND REGION = 'North of England' AND SEX = 'Female' UNION ALL SELECT '2014' AS "Year", 'Carcinoma and Other' AS "Tumour Type", 'Stage 4' AS "Stage", 'North of England' AS "Region", 'Male' AS "Sex", 'Age 60-69' AS "Age", SUM(statisticofinterest_pancreas) as statistic_of_interest FROM tumour_cohort_linked_pancreas WHERE DIAGNOSISYEAR = '2014' AND MORPH_GROUP = 'Carcinoma and Other' AND STAGE_SPLIT23 = 'Stage 4' AND SPLIT_50_TO_80 = 'Age 60-69' AND REGION = 'North of England' AND SEX = 'Male' UNION ALL SELECT '2014' AS "Year", 'Carcinoma and Other' AS "Tumour Type", 'Stage 4' AS "Stage", 'South of England' AS "Region", 'All' AS "Sex", 'Age 60-69' AS "Age", SUM(statisticofinterest_pancreas) as statistic_of_interest FROM tumour_cohort_linked_pancreas WHERE DIAGNOSISYEAR = '2014' AND MORPH_GROUP = 'Carcinoma and Other' AND STAGE_SPLIT23 = 'Stage 4' AND SPLIT_50_TO_80 = 'Age 60-69' AND REGION = 'South of England' UNION ALL SELECT '2014' AS "Year", 'Carcinoma and Other' AS "Tumour Type", 'Stage 4' AS "Stage", 'South of England' AS "Region", 'Female' AS "Sex", 'Age 60-69' AS "Age", SUM(statisticofinterest_pancreas) as statistic_of_interest FROM tumour_cohort_linked_pancreas WHERE DIAGNOSISYEAR = '2014' AND MORPH_GROUP = 'Carcinoma and Other' AND STAGE_SPLIT23 = 'Stage 4' AND SPLIT_50_TO_80 = 'Age 60-69' AND REGION = 'South of England' AND SEX = 'Female' UNION ALL SELECT '2014' AS "Year", 'Carcinoma and Other' AS "Tumour Type", 'Stage 4' AS "Stage", 'South of England' AS "Region", 'Male' AS "Sex", 'Age 60-69' AS "Age", SUM(statisticofinterest_pancreas) as statistic_of_interest FROM tumour_cohort_linked_pancreas WHERE DIAGNOSISYEAR = '2014' AND MORPH_GROUP = 'Carcinoma and Other' AND STAGE_SPLIT23 = 'Stage 4' AND SPLIT_50_TO_80 = 'Age 60-69' AND REGION = 'South of England' AND SEX = 'Male' UNION ALL SELECT '2014' AS "Year", 'Carcinoma and Other' AS "Tumour Type", 'Stage 4' AS "Stage", 'All' AS "Region", 'All' AS "Sex", 'Age 70-79' AS "Age", SUM(statisticofinterest_pancreas) as statistic_of_interest FROM tumour_cohort_linked_pancreas WHERE DIAGNOSISYEAR = '2014' AND MORPH_GROUP = 'Carcinoma and Other' AND STAGE_SPLIT23 = 'Stage 4' AND SPLIT_50_TO_80 = 'Age 70-79' UNION ALL SELECT '2014' AS "Year", 'Carcinoma and Other' AS "Tumour Type", 'Stage 4' AS "Stage", 'London' AS "Region", 'All' AS "Sex", 'Age 70-79' AS "Age", SUM(statisticofinterest_pancreas) as statistic_of_interest FROM tumour_cohort_linked_pancreas WHERE DIAGNOSISYEAR = '2014' AND MORPH_GROUP = 'Carcinoma and Other' AND STAGE_SPLIT23 = 'Stage 4' AND SPLIT_50_TO_80 = 'Age 70-79' AND REGION = 'London' UNION ALL SELECT '2014' AS "Year", 'Carcinoma and Other' AS "Tumour Type", 'Stage 4' AS "Stage", 'Midlands and East of England' AS "Region", 'All' AS "Sex", 'Age 70-79' AS "Age", SUM(statisticofinterest_pancreas) as statistic_of_interest FROM tumour_cohort_linked_pancreas WHERE DIAGNOSISYEAR = '2014' AND MORPH_GROUP = 'Carcinoma and Other' AND STAGE_SPLIT23 = 'Stage 4' AND SPLIT_50_TO_80 = 'Age 70-79' AND REGION = 'Midlands and East of England' UNION ALL SELECT '2014' AS "Year", 'Carcinoma and Other' AS "Tumour Type", 'Stage 4' AS "Stage", 'Midlands and East of England' AS "Region", 'Female' AS "Sex", 'Age 70-79' AS "Age", SUM(statisticofinterest_pancreas) as statistic_of_interest FROM tumour_cohort_linked_pancreas WHERE DIAGNOSISYEAR = '2014' AND MORPH_GROUP = 'Carcinoma and Other' AND STAGE_SPLIT23 = 'Stage 4' AND SPLIT_50_TO_80 = 'Age 70-79' AND REGION = 'Midlands and East of England' AND SEX = 'Female' UNION ALL SELECT '2014' AS "Year", 'Carcinoma and Other' AS "Tumour Type", 'Stage 4' AS "Stage", 'Midlands and East of England' AS "Region", 'Male' AS "Sex", 'Age 70-79' AS "Age", SUM(statisticofinterest_pancreas) as statistic_of_interest FROM tumour_cohort_linked_pancreas WHERE DIAGNOSISYEAR = '2014' AND MORPH_GROUP = 'Carcinoma and Other' AND STAGE_SPLIT23 = 'Stage 4' AND SPLIT_50_TO_80 = 'Age 70-79' AND REGION = 'Midlands and East of England' AND SEX = 'Male' UNION ALL SELECT '2014' AS "Year", 'Carcinoma and Other' AS "Tumour Type", 'Stage 4' AS "Stage", 'North of England' AS "Region", 'All' AS "Sex", 'Age 70-79' AS "Age", SUM(statisticofinterest_pancreas) as statistic_of_interest FROM tumour_cohort_linked_pancreas WHERE DIAGNOSISYEAR = '2014' AND MORPH_GROUP = 'Carcinoma and Other' AND STAGE_SPLIT23 = 'Stage 4' AND SPLIT_50_TO_80 = 'Age 70-79' AND REGION = 'North of England' UNION ALL SELECT '2014' AS "Year", 'Carcinoma and Other' AS "Tumour Type", 'Stage 4' AS "Stage", 'North of England' AS "Region", 'Female' AS "Sex", 'Age 70-79' AS "Age", SUM(statisticofinterest_pancreas) as statistic_of_interest FROM tumour_cohort_linked_pancreas WHERE DIAGNOSISYEAR = '2014' AND MORPH_GROUP = 'Carcinoma and Other' AND STAGE_SPLIT23 = 'Stage 4' AND SPLIT_50_TO_80 = 'Age 70-79' AND REGION = 'North of England' AND SEX = 'Female' UNION ALL SELECT '2014' AS "Year", 'Carcinoma and Other' AS "Tumour Type", 'Stage 4' AS "Stage", 'North of England' AS "Region", 'Male' AS "Sex", 'Age 70-79' AS "Age", SUM(statisticofinterest_pancreas) as statistic_of_interest FROM tumour_cohort_linked_pancreas WHERE DIAGNOSISYEAR = '2014' AND MORPH_GROUP = 'Carcinoma and Other' AND STAGE_SPLIT23 = 'Stage 4' AND SPLIT_50_TO_80 = 'Age 70-79' AND REGION = 'North of England' AND SEX = 'Male' UNION ALL SELECT '2014' AS "Year", 'Carcinoma and Other' AS "Tumour Type", 'Stage 4' AS "Stage", 'South of England' AS "Region", 'All' AS "Sex", 'Age 70-79' AS "Age", SUM(statisticofinterest_pancreas) as statistic_of_interest FROM tumour_cohort_linked_pancreas WHERE DIAGNOSISYEAR = '2014' AND MORPH_GROUP = 'Carcinoma and Other' AND STAGE_SPLIT23 = 'Stage 4' AND SPLIT_50_TO_80 = 'Age 70-79' AND REGION = 'South of England' UNION ALL SELECT '2014' AS "Year", 'Carcinoma and Other' AS "Tumour Type", 'Stage 4' AS "Stage", 'South of England' AS "Region", 'Female' AS "Sex", 'Age 70-79' AS "Age", SUM(statisticofinterest_pancreas) as statistic_of_interest FROM tumour_cohort_linked_pancreas WHERE DIAGNOSISYEAR = '2014' AND MORPH_GROUP = 'Carcinoma and Other' AND STAGE_SPLIT23 = 'Stage 4' AND SPLIT_50_TO_80 = 'Age 70-79' AND REGION = 'South of England' AND SEX = 'Female' UNION ALL SELECT '2014' AS "Year", 'Carcinoma and Other' AS "Tumour Type", 'Stage 4' AS "Stage", 'South of England' AS "Region", 'Male' AS "Sex", 'Age 70-79' AS "Age", SUM(statisticofinterest_pancreas) as statistic_of_interest FROM tumour_cohort_linked_pancreas WHERE DIAGNOSISYEAR = '2014' AND MORPH_GROUP = 'Carcinoma and Other' AND STAGE_SPLIT23 = 'Stage 4' AND SPLIT_50_TO_80 = 'Age 70-79' AND REGION = 'South of England' AND SEX = 'Male' UNION ALL SELECT '2014' AS "Year", 'Carcinoma and Other' AS "Tumour Type", 'Stage 4' AS "Stage", 'All' AS "Region", 'All' AS "Sex", 'Age 80+' AS "Age", SUM(statisticofinterest_pancreas) as statistic_of_interest FROM tumour_cohort_linked_pancreas WHERE DIAGNOSISYEAR = '2014' AND MORPH_GROUP = 'Carcinoma and Other' AND STAGE_SPLIT23 = 'Stage 4' AND SPLIT_50_TO_80 = 'Age 80+' UNION ALL SELECT '2014' AS "Year", 'Carcinoma and Other' AS "Tumour Type", 'Stage 4' AS "Stage", 'London' AS "Region", 'All' AS "Sex", 'Age 80+' AS "Age", SUM(statisticofinterest_pancreas) as statistic_of_interest FROM tumour_cohort_linked_pancreas WHERE DIAGNOSISYEAR = '2014' AND MORPH_GROUP = 'Carcinoma and Other' AND STAGE_SPLIT23 = 'Stage 4' AND SPLIT_50_TO_80 = 'Age 80+' AND REGION = 'London' UNION ALL SELECT '2014' AS "Year", 'Carcinoma and Other' AS "Tumour Type", 'Stage 4' AS "Stage", 'Midlands and East of England' AS "Region", 'All' AS "Sex", 'Age 80+' AS "Age", SUM(statisticofinterest_pancreas) as statistic_of_interest FROM tumour_cohort_linked_pancreas WHERE DIAGNOSISYEAR = '2014' AND MORPH_GROUP = 'Carcinoma and Other' AND STAGE_SPLIT23 = 'Stage 4' AND SPLIT_50_TO_80 = 'Age 80+' AND REGION = 'Midlands and East of England' UNION ALL SELECT '2014' AS "Year", 'Carcinoma and Other' AS "Tumour Type", 'Stage 4' AS "Stage", 'Midlands and East of England' AS "Region", 'Female' AS "Sex", 'Age 80+' AS "Age", SUM(statisticofinterest_pancreas) as statistic_of_interest FROM tumour_cohort_linked_pancreas WHERE DIAGNOSISYEAR = '2014' AND MORPH_GROUP = 'Carcinoma and Other' AND STAGE_SPLIT23 = 'Stage 4' AND SPLIT_50_TO_80 = 'Age 80+' AND REGION = 'Midlands and East of England' AND SEX = 'Female' UNION ALL SELECT '2014' AS "Year", 'Carcinoma and Other' AS "Tumour Type", 'Stage 4' AS "Stage", 'Midlands and East of England' AS "Region", 'Male' AS "Sex", 'Age 80+' AS "Age", SUM(statisticofinterest_pancreas) as statistic_of_interest FROM tumour_cohort_linked_pancreas WHERE DIAGNOSISYEAR = '2014' AND MORPH_GROUP = 'Carcinoma and Other' AND STAGE_SPLIT23 = 'Stage 4' AND SPLIT_50_TO_80 = 'Age 80+' AND REGION = 'Midlands and East of England' AND SEX = 'Male' UNION ALL SELECT '2014' AS "Year", 'Carcinoma and Other' AS "Tumour Type", 'Stage 4' AS "Stage", 'North of England' AS "Region", 'All' AS "Sex", 'Age 80+' AS "Age", SUM(statisticofinterest_pancreas) as statistic_of_interest FROM tumour_cohort_linked_pancreas WHERE DIAGNOSISYEAR = '2014' AND MORPH_GROUP = 'Carcinoma and Other' AND STAGE_SPLIT23 = 'Stage 4' AND SPLIT_50_TO_80 = 'Age 80+' AND REGION = 'North of England' UNION ALL SELECT '2014' AS "Year", 'Carcinoma and Other' AS "Tumour Type", 'Stage 4' AS "Stage", 'North of England' AS "Region", 'Female' AS "Sex", 'Age 80+' AS "Age", SUM(statisticofinterest_pancreas) as statistic_of_interest FROM tumour_cohort_linked_pancreas WHERE DIAGNOSISYEAR = '2014' AND MORPH_GROUP = 'Carcinoma and Other' AND STAGE_SPLIT23 = 'Stage 4' AND SPLIT_50_TO_80 = 'Age 80+' AND REGION = 'North of England' AND SEX = 'Female' UNION ALL SELECT '2014' AS "Year", 'Carcinoma and Other' AS "Tumour Type", 'Stage 4' AS "Stage", 'North of England' AS "Region", 'Male' AS "Sex", 'Age 80+' AS "Age", SUM(statisticofinterest_pancreas) as statistic_of_interest FROM tumour_cohort_linked_pancreas WHERE DIAGNOSISYEAR = '2014' AND MORPH_GROUP = 'Carcinoma and Other' AND STAGE_SPLIT23 = 'Stage 4' AND SPLIT_50_TO_80 = 'Age 80+' AND REGION = 'North of England' AND SEX = 'Male' UNION ALL SELECT '2014' AS "Year", 'Carcinoma and Other' AS "Tumour Type", 'Stage 4' AS "Stage", 'South of England' AS "Region", 'All' AS "Sex", 'Age 80+' AS "Age", SUM(statisticofinterest_pancreas) as statistic_of_interest FROM tumour_cohort_linked_pancreas WHERE DIAGNOSISYEAR = '2014' AND MORPH_GROUP = 'Carcinoma and Other' AND STAGE_SPLIT23 = 'Stage 4' AND SPLIT_50_TO_80 = 'Age 80+' AND REGION = 'South of England' UNION ALL SELECT '2014' AS "Year", 'Carcinoma and Other' AS "Tumour Type", 'Stage 4' AS "Stage", 'South of England' AS "Region", 'Female' AS "Sex", 'Age 80+' AS "Age", SUM(statisticofinterest_pancreas) as statistic_of_interest FROM tumour_cohort_linked_pancreas WHERE DIAGNOSISYEAR = '2014' AND MORPH_GROUP = 'Carcinoma and Other' AND STAGE_SPLIT23 = 'Stage 4' AND SPLIT_50_TO_80 = 'Age 80+' AND REGION = 'South of England' AND SEX = 'Female' UNION ALL SELECT '2014' AS "Year", 'Carcinoma and Other' AS "Tumour Type", 'Stage 4' AS "Stage", 'South of England' AS "Region", 'Male' AS "Sex", 'Age 80+' AS "Age", SUM(statisticofinterest_pancreas) as statistic_of_interest FROM tumour_cohort_linked_pancreas WHERE DIAGNOSISYEAR = '2014' AND MORPH_GROUP = 'Carcinoma and Other' AND STAGE_SPLIT23 = 'Stage 4' AND SPLIT_50_TO_80 = 'Age 80+' AND REGION = 'South of England' AND SEX = 'Male' UNION ALL SELECT '2014' AS "Year", 'Carcinoma and Other' AS "Tumour Type", 'Stage unknown' AS "Stage", 'All' AS "Region", 'All' AS "Sex", 'All' AS "Age", SUM(statisticofinterest_pancreas) as statistic_of_interest FROM tumour_cohort_linked_pancreas WHERE DIAGNOSISYEAR = '2014' AND MORPH_GROUP = 'Carcinoma and Other' AND STAGE_SPLIT23 = 'Stage unknown' UNION ALL SELECT '2014' AS "Year", 'Carcinoma and Other' AS "Tumour Type", 'Stage unknown' AS "Stage", 'All' AS "Region", 'All' AS "Sex", 'Age 00-59' AS "Age", SUM(statisticofinterest_pancreas) as statistic_of_interest FROM tumour_cohort_linked_pancreas WHERE DIAGNOSISYEAR = '2014' AND MORPH_GROUP = 'Carcinoma and Other' AND STAGE_SPLIT23 = 'Stage unknown' AND SPLIT_60_TO_80 = 'Age 00-59' UNION ALL SELECT '2014' AS "Year", 'Carcinoma and Other' AS "Tumour Type", 'Stage unknown' AS "Stage", 'All' AS "Region", 'All' AS "Sex", 'Age 60-69' AS "Age", SUM(statisticofinterest_pancreas) as statistic_of_interest FROM tumour_cohort_linked_pancreas WHERE DIAGNOSISYEAR = '2014' AND MORPH_GROUP = 'Carcinoma and Other' AND STAGE_SPLIT23 = 'Stage unknown' AND SPLIT_60_TO_80 = 'Age 60-69' UNION ALL SELECT '2014' AS "Year", 'Carcinoma and Other' AS "Tumour Type", 'Stage unknown' AS "Stage", 'All' AS "Region", 'Female' AS "Sex", 'Age 60-69' AS "Age", SUM(statisticofinterest_pancreas) as statistic_of_interest FROM tumour_cohort_linked_pancreas WHERE DIAGNOSISYEAR = '2014' AND MORPH_GROUP = 'Carcinoma and Other' AND STAGE_SPLIT23 = 'Stage unknown' AND SPLIT_60_TO_80 = 'Age 60-69' AND SEX = 'Female' UNION ALL SELECT '2014' AS "Year", 'Carcinoma and Other' AS "Tumour Type", 'Stage unknown' AS "Stage", 'All' AS "Region", 'Male' AS "Sex", 'Age 60-69' AS "Age", SUM(statisticofinterest_pancreas) as statistic_of_interest FROM tumour_cohort_linked_pancreas WHERE DIAGNOSISYEAR = '2014' AND MORPH_GROUP = 'Carcinoma and Other' AND STAGE_SPLIT23 = 'Stage unknown' AND SPLIT_60_TO_80 = 'Age 60-69' AND SEX = 'Male' UNION ALL SELECT '2014' AS "Year", 'Carcinoma and Other' AS "Tumour Type", 'Stage unknown' AS "Stage", 'All' AS "Region", 'All' AS "Sex", 'Age 70-79' AS "Age", SUM(statisticofinterest_pancreas) as statistic_of_interest FROM tumour_cohort_linked_pancreas WHERE DIAGNOSISYEAR = '2014' AND MORPH_GROUP = 'Carcinoma and Other' AND STAGE_SPLIT23 = 'Stage unknown' AND SPLIT_60_TO_80 = 'Age 70-79' UNION ALL SELECT '2014' AS "Year", 'Carcinoma and Other' AS "Tumour Type", 'Stage unknown' AS "Stage", 'All' AS "Region", 'Female' AS "Sex", 'Age 70-79' AS "Age", SUM(statisticofinterest_pancreas) as statistic_of_interest FROM tumour_cohort_linked_pancreas WHERE DIAGNOSISYEAR = '2014' AND MORPH_GROUP = 'Carcinoma and Other' AND STAGE_SPLIT23 = 'Stage unknown' AND SPLIT_60_TO_80 = 'Age 70-79' AND SEX = 'Female' UNION ALL SELECT '2014' AS "Year", 'Carcinoma and Other' AS "Tumour Type", 'Stage unknown' AS "Stage", 'All' AS "Region", 'Male' AS "Sex", 'Age 70-79' AS "Age", SUM(statisticofinterest_pancreas) as statistic_of_interest FROM tumour_cohort_linked_pancreas WHERE DIAGNOSISYEAR = '2014' AND MORPH_GROUP = 'Carcinoma and Other' AND STAGE_SPLIT23 = 'Stage unknown' AND SPLIT_60_TO_80 = 'Age 70-79' AND SEX = 'Male' UNION ALL SELECT '2014' AS "Year", 'Carcinoma and Other' AS "Tumour Type", 'Stage unknown' AS "Stage", 'All' AS "Region", 'All' AS "Sex", 'Age 80+' AS "Age", SUM(statisticofinterest_pancreas) as statistic_of_interest FROM tumour_cohort_linked_pancreas WHERE DIAGNOSISYEAR = '2014' AND MORPH_GROUP = 'Carcinoma and Other' AND STAGE_SPLIT23 = 'Stage unknown' AND SPLIT_60_TO_80 = 'Age 80+' UNION ALL SELECT '2014' AS "Year", 'Carcinoma and Other' AS "Tumour Type", 'Stage unknown' AS "Stage", 'All' AS "Region", 'Female' AS "Sex", 'Age 80+' AS "Age", SUM(statisticofinterest_pancreas) as statistic_of_interest FROM tumour_cohort_linked_pancreas WHERE DIAGNOSISYEAR = '2014' AND MORPH_GROUP = 'Carcinoma and Other' AND STAGE_SPLIT23 = 'Stage unknown' AND SPLIT_60_TO_80 = 'Age 80+' AND SEX = 'Female' UNION ALL SELECT '2014' AS "Year", 'Carcinoma and Other' AS "Tumour Type", 'Stage unknown' AS "Stage", 'All' AS "Region", 'Male' AS "Sex", 'Age 80+' AS "Age", SUM(statisticofinterest_pancreas) as statistic_of_interest FROM tumour_cohort_linked_pancreas WHERE DIAGNOSISYEAR = '2014' AND MORPH_GROUP = 'Carcinoma and Other' AND STAGE_SPLIT23 = 'Stage unknown' AND SPLIT_60_TO_80 = 'Age 80+' AND SEX = 'Male' UNION ALL SELECT '2014' AS "Year", 'Neuroendocrine' AS "Tumour Type", 'All' AS "Stage", 'All' AS "Region", 'All' AS "Sex", 'All' AS "Age", SUM(statisticofinterest_pancreas) as statistic_of_interest FROM tumour_cohort_linked_pancreas WHERE DIAGNOSISYEAR = '2014' AND MORPH_GROUP = 'Neuroendocrine' UNION ALL SELECT '2014' AS "Year", 'Neuroendocrine' AS "Tumour Type", 'All' AS "Stage", 'All' AS "Region", 'All' AS "Sex", 'Age 00-49' AS "Age", SUM(statisticofinterest_pancreas) as statistic_of_interest FROM tumour_cohort_linked_pancreas WHERE DIAGNOSISYEAR = '2014' AND MORPH_GROUP = 'Neuroendocrine' AND SPLIT_50_TO_70 = 'Age 00-49' UNION ALL SELECT '2014' AS "Year", 'Neuroendocrine' AS "Tumour Type", 'All' AS "Stage", 'All' AS "Region", 'All' AS "Sex", 'Age 50-59' AS "Age", SUM(statisticofinterest_pancreas) as statistic_of_interest FROM tumour_cohort_linked_pancreas WHERE DIAGNOSISYEAR = '2014' AND MORPH_GROUP = 'Neuroendocrine' AND SPLIT_50_TO_70 = 'Age 50-59' UNION ALL SELECT '2014' AS "Year", 'Neuroendocrine' AS "Tumour Type", 'All' AS "Stage", 'All' AS "Region", 'All' AS "Sex", 'Age 60-69' AS "Age", SUM(statisticofinterest_pancreas) as statistic_of_interest FROM tumour_cohort_linked_pancreas WHERE DIAGNOSISYEAR = '2014' AND MORPH_GROUP = 'Neuroendocrine' AND SPLIT_50_TO_70 = 'Age 60-69' UNION ALL SELECT '2014' AS "Year", 'Neuroendocrine' AS "Tumour Type", 'All' AS "Stage", 'All' AS "Region", 'All' AS "Sex", 'Age 70+' AS "Age", SUM(statisticofinterest_pancreas) as statistic_of_interest FROM tumour_cohort_linked_pancreas WHERE DIAGNOSISYEAR = '2014' AND MORPH_GROUP = 'Neuroendocrine' AND SPLIT_50_TO_70 = 'Age 70+' UNION ALL SELECT '2015' AS "Year", 'All' AS "Tumour Type", 'All' AS "Stage", 'All' AS "Region", 'All' AS "Sex", 'All' AS "Age", SUM(statisticofinterest_pancreas) as statistic_of_interest FROM tumour_cohort_linked_pancreas WHERE DIAGNOSISYEAR = '2015' UNION ALL SELECT '2015' AS "Year", 'Carcinoma and Other' AS "Tumour Type", 'All' AS "Stage", 'All' AS "Region", 'All' AS "Sex", 'All' AS "Age", SUM(statisticofinterest_pancreas) as statistic_of_interest FROM tumour_cohort_linked_pancreas WHERE DIAGNOSISYEAR = '2015' AND MORPH_GROUP = 'Carcinoma and Other' UNION ALL SELECT '2015' AS "Year", 'Carcinoma and Other' AS "Tumour Type", 'Stage 1-2' AS "Stage", 'All' AS "Region", 'All' AS "Sex", 'All' AS "Age", SUM(statisticofinterest_pancreas) as statistic_of_interest FROM tumour_cohort_linked_pancreas WHERE DIAGNOSISYEAR = '2015' AND MORPH_GROUP = 'Carcinoma and Other' AND STAGE_SPLIT23 = 'Stage 1-2' UNION ALL SELECT '2015' AS "Year", 'Carcinoma and Other' AS "Tumour Type", 'Stage 1-2' AS "Stage", 'All' AS "Region", 'All' AS "Sex", 'Age 00-59' AS "Age", SUM(statisticofinterest_pancreas) as statistic_of_interest FROM tumour_cohort_linked_pancreas WHERE DIAGNOSISYEAR = '2015' AND MORPH_GROUP = 'Carcinoma and Other' AND STAGE_SPLIT23 = 'Stage 1-2' AND SPLIT_60_TO_80 = 'Age 00-59' UNION ALL SELECT '2015' AS "Year", 'Carcinoma and Other' AS "Tumour Type", 'Stage 1-2' AS "Stage", 'All' AS "Region", 'All' AS "Sex", 'Age 60-69' AS "Age", SUM(statisticofinterest_pancreas) as statistic_of_interest FROM tumour_cohort_linked_pancreas WHERE DIAGNOSISYEAR = '2015' AND MORPH_GROUP = 'Carcinoma and Other' AND STAGE_SPLIT23 = 'Stage 1-2' AND SPLIT_60_TO_80 = 'Age 60-69' UNION ALL SELECT '2015' AS "Year", 'Carcinoma and Other' AS "Tumour Type", 'Stage 1-2' AS "Stage", 'All' AS "Region", 'Female' AS "Sex", 'Age 60-69' AS "Age", SUM(statisticofinterest_pancreas) as statistic_of_interest FROM tumour_cohort_linked_pancreas WHERE DIAGNOSISYEAR = '2015' AND MORPH_GROUP = 'Carcinoma and Other' AND STAGE_SPLIT23 = 'Stage 1-2' AND SPLIT_60_TO_80 = 'Age 60-69' AND SEX = 'Female' UNION ALL SELECT '2015' AS "Year", 'Carcinoma and Other' AS "Tumour Type", 'Stage 1-2' AS "Stage", 'All' AS "Region", 'Male' AS "Sex", 'Age 60-69' AS "Age", SUM(statisticofinterest_pancreas) as statistic_of_interest FROM tumour_cohort_linked_pancreas WHERE DIAGNOSISYEAR = '2015' AND MORPH_GROUP = 'Carcinoma and Other' AND STAGE_SPLIT23 = 'Stage 1-2' AND SPLIT_60_TO_80 = 'Age 60-69' AND SEX = 'Male' UNION ALL SELECT '2015' AS "Year", 'Carcinoma and Other' AS "Tumour Type", 'Stage 1-2' AS "Stage", 'All' AS "Region", 'All' AS "Sex", 'Age 70-79' AS "Age", SUM(statisticofinterest_pancreas) as statistic_of_interest FROM tumour_cohort_linked_pancreas WHERE DIAGNOSISYEAR = '2015' AND MORPH_GROUP = 'Carcinoma and Other' AND STAGE_SPLIT23 = 'Stage 1-2' AND SPLIT_60_TO_80 = 'Age 70-79' UNION ALL SELECT '2015' AS "Year", 'Carcinoma and Other' AS "Tumour Type", 'Stage 1-2' AS "Stage", 'All' AS "Region", 'Female' AS "Sex", 'Age 70-79' AS "Age", SUM(statisticofinterest_pancreas) as statistic_of_interest FROM tumour_cohort_linked_pancreas WHERE DIAGNOSISYEAR = '2015' AND MORPH_GROUP = 'Carcinoma and Other' AND STAGE_SPLIT23 = 'Stage 1-2' AND SPLIT_60_TO_80 = 'Age 70-79' AND SEX = 'Female' UNION ALL SELECT '2015' AS "Year", 'Carcinoma and Other' AS "Tumour Type", 'Stage 1-2' AS "Stage", 'All' AS "Region", 'Male' AS "Sex", 'Age 70-79' AS "Age", SUM(statisticofinterest_pancreas) as statistic_of_interest FROM tumour_cohort_linked_pancreas WHERE DIAGNOSISYEAR = '2015' AND MORPH_GROUP = 'Carcinoma and Other' AND STAGE_SPLIT23 = 'Stage 1-2' AND SPLIT_60_TO_80 = 'Age 70-79' AND SEX = 'Male' UNION ALL SELECT '2015' AS "Year", 'Carcinoma and Other' AS "Tumour Type", 'Stage 1-2' AS "Stage", 'All' AS "Region", 'All' AS "Sex", 'Age 80+' AS "Age", SUM(statisticofinterest_pancreas) as statistic_of_interest FROM tumour_cohort_linked_pancreas WHERE DIAGNOSISYEAR = '2015' AND MORPH_GROUP = 'Carcinoma and Other' AND STAGE_SPLIT23 = 'Stage 1-2' AND SPLIT_60_TO_80 = 'Age 80+' UNION ALL SELECT '2015' AS "Year", 'Carcinoma and Other' AS "Tumour Type", 'Stage 1-2' AS "Stage", 'All' AS "Region", 'Female' AS "Sex", 'Age 80+' AS "Age", SUM(statisticofinterest_pancreas) as statistic_of_interest FROM tumour_cohort_linked_pancreas WHERE DIAGNOSISYEAR = '2015' AND MORPH_GROUP = 'Carcinoma and Other' AND STAGE_SPLIT23 = 'Stage 1-2' AND SPLIT_60_TO_80 = 'Age 80+' AND SEX = 'Female' UNION ALL SELECT '2015' AS "Year", 'Carcinoma and Other' AS "Tumour Type", 'Stage 1-2' AS "Stage", 'All' AS "Region", 'Male' AS "Sex", 'Age 80+' AS "Age", SUM(statisticofinterest_pancreas) as statistic_of_interest FROM tumour_cohort_linked_pancreas WHERE DIAGNOSISYEAR = '2015' AND MORPH_GROUP = 'Carcinoma and Other' AND STAGE_SPLIT23 = 'Stage 1-2' AND SPLIT_60_TO_80 = 'Age 80+' AND SEX = 'Male' UNION ALL SELECT '2015' AS "Year", 'Carcinoma and Other' AS "Tumour Type", 'Stage 3' AS "Stage", 'All' AS "Region", 'All' AS "Sex", 'All' AS "Age", SUM(statisticofinterest_pancreas) as statistic_of_interest FROM tumour_cohort_linked_pancreas WHERE DIAGNOSISYEAR = '2015' AND MORPH_GROUP = 'Carcinoma and Other' AND STAGE_SPLIT23 = 'Stage 3' UNION ALL SELECT '2015' AS "Year", 'Carcinoma and Other' AS "Tumour Type", 'Stage 3' AS "Stage", 'All' AS "Region", 'All' AS "Sex", 'Age 00-59' AS "Age", SUM(statisticofinterest_pancreas) as statistic_of_interest FROM tumour_cohort_linked_pancreas WHERE DIAGNOSISYEAR = '2015' AND MORPH_GROUP = 'Carcinoma and Other' AND STAGE_SPLIT23 = 'Stage 3' AND SPLIT_60_70 = 'Age 00-59' UNION ALL SELECT '2015' AS "Year", 'Carcinoma and Other' AS "Tumour Type", 'Stage 3' AS "Stage", 'All' AS "Region", 'All' AS "Sex", 'Age 60-69' AS "Age", SUM(statisticofinterest_pancreas) as statistic_of_interest FROM tumour_cohort_linked_pancreas WHERE DIAGNOSISYEAR = '2015' AND MORPH_GROUP = 'Carcinoma and Other' AND STAGE_SPLIT23 = 'Stage 3' AND SPLIT_60_70 = 'Age 60-69' UNION ALL SELECT '2015' AS "Year", 'Carcinoma and Other' AS "Tumour Type", 'Stage 3' AS "Stage", 'All' AS "Region", 'All' AS "Sex", 'Age 70+' AS "Age", SUM(statisticofinterest_pancreas) as statistic_of_interest FROM tumour_cohort_linked_pancreas WHERE DIAGNOSISYEAR = '2015' AND MORPH_GROUP = 'Carcinoma and Other' AND STAGE_SPLIT23 = 'Stage 3' AND SPLIT_60_70 = 'Age 70+' UNION ALL SELECT '2015' AS "Year", 'Carcinoma and Other' AS "Tumour Type", 'Stage 3' AS "Stage", 'All' AS "Region", 'Female' AS "Sex", 'Age 70+' AS "Age", SUM(statisticofinterest_pancreas) as statistic_of_interest FROM tumour_cohort_linked_pancreas WHERE DIAGNOSISYEAR = '2015' AND MORPH_GROUP = 'Carcinoma and Other' AND STAGE_SPLIT23 = 'Stage 3' AND SPLIT_60_70 = 'Age 70+' AND SEX = 'Female' UNION ALL SELECT '2015' AS "Year", 'Carcinoma and Other' AS "Tumour Type", 'Stage 3' AS "Stage", 'All' AS "Region", 'Male' AS "Sex", 'Age 70+' AS "Age", SUM(statisticofinterest_pancreas) as statistic_of_interest FROM tumour_cohort_linked_pancreas WHERE DIAGNOSISYEAR = '2015' AND MORPH_GROUP = 'Carcinoma and Other' AND STAGE_SPLIT23 = 'Stage 3' AND SPLIT_60_70 = 'Age 70+' AND SEX = 'Male' UNION ALL SELECT '2015' AS "Year", 'Carcinoma and Other' AS "Tumour Type", 'Stage 4' AS "Stage", 'All' AS "Region", 'All' AS "Sex", 'All' AS "Age", SUM(statisticofinterest_pancreas) as statistic_of_interest FROM tumour_cohort_linked_pancreas WHERE DIAGNOSISYEAR = '2015' AND MORPH_GROUP = 'Carcinoma and Other' AND STAGE_SPLIT23 = 'Stage 4' UNION ALL SELECT '2015' AS "Year", 'Carcinoma and Other' AS "Tumour Type", 'Stage 4' AS "Stage", 'All' AS "Region", 'All' AS "Sex", 'Age 00-49' AS "Age", SUM(statisticofinterest_pancreas) as statistic_of_interest FROM tumour_cohort_linked_pancreas WHERE DIAGNOSISYEAR = '2015' AND MORPH_GROUP = 'Carcinoma and Other' AND STAGE_SPLIT23 = 'Stage 4' AND SPLIT_50_TO_80 = 'Age 00-49' UNION ALL SELECT '2015' AS "Year", 'Carcinoma and Other' AS "Tumour Type", 'Stage 4' AS "Stage", 'All' AS "Region", 'All' AS "Sex", 'Age 50-59' AS "Age", SUM(statisticofinterest_pancreas) as statistic_of_interest FROM tumour_cohort_linked_pancreas WHERE DIAGNOSISYEAR = '2015' AND MORPH_GROUP = 'Carcinoma and Other' AND STAGE_SPLIT23 = 'Stage 4' AND SPLIT_50_TO_80 = 'Age 50-59' UNION ALL SELECT '2015' AS "Year", 'Carcinoma and Other' AS "Tumour Type", 'Stage 4' AS "Stage", 'All' AS "Region", 'All' AS "Sex", 'Age 60-69' AS "Age", SUM(statisticofinterest_pancreas) as statistic_of_interest FROM tumour_cohort_linked_pancreas WHERE DIAGNOSISYEAR = '2015' AND MORPH_GROUP = 'Carcinoma and Other' AND STAGE_SPLIT23 = 'Stage 4' AND SPLIT_50_TO_80 = 'Age 60-69' UNION ALL SELECT '2015' AS "Year", 'Carcinoma and Other' AS "Tumour Type", 'Stage 4' AS "Stage", 'London' AS "Region", 'All' AS "Sex", 'Age 60-69' AS "Age", SUM(statisticofinterest_pancreas) as statistic_of_interest FROM tumour_cohort_linked_pancreas WHERE DIAGNOSISYEAR = '2015' AND MORPH_GROUP = 'Carcinoma and Other' AND STAGE_SPLIT23 = 'Stage 4' AND SPLIT_50_TO_80 = 'Age 60-69' AND REGION = 'London' UNION ALL SELECT '2015' AS "Year", 'Carcinoma and Other' AS "Tumour Type", 'Stage 4' AS "Stage", 'Midlands and East of England' AS "Region", 'All' AS "Sex", 'Age 60-69' AS "Age", SUM(statisticofinterest_pancreas) as statistic_of_interest FROM tumour_cohort_linked_pancreas WHERE DIAGNOSISYEAR = '2015' AND MORPH_GROUP = 'Carcinoma and Other' AND STAGE_SPLIT23 = 'Stage 4' AND SPLIT_50_TO_80 = 'Age 60-69' AND REGION = 'Midlands and East of England' UNION ALL SELECT '2015' AS "Year", 'Carcinoma and Other' AS "Tumour Type", 'Stage 4' AS "Stage", 'Midlands and East of England' AS "Region", 'Female' AS "Sex", 'Age 60-69' AS "Age", SUM(statisticofinterest_pancreas) as statistic_of_interest FROM tumour_cohort_linked_pancreas WHERE DIAGNOSISYEAR = '2015' AND MORPH_GROUP = 'Carcinoma and Other' AND STAGE_SPLIT23 = 'Stage 4' AND SPLIT_50_TO_80 = 'Age 60-69' AND REGION = 'Midlands and East of England' AND SEX = 'Female' UNION ALL SELECT '2015' AS "Year", 'Carcinoma and Other' AS "Tumour Type", 'Stage 4' AS "Stage", 'Midlands and East of England' AS "Region", 'Male' AS "Sex", 'Age 60-69' AS "Age", SUM(statisticofinterest_pancreas) as statistic_of_interest FROM tumour_cohort_linked_pancreas WHERE DIAGNOSISYEAR = '2015' AND MORPH_GROUP = 'Carcinoma and Other' AND STAGE_SPLIT23 = 'Stage 4' AND SPLIT_50_TO_80 = 'Age 60-69' AND REGION = 'Midlands and East of England' AND SEX = 'Male' UNION ALL SELECT '2015' AS "Year", 'Carcinoma and Other' AS "Tumour Type", 'Stage 4' AS "Stage", 'North of England' AS "Region", 'All' AS "Sex", 'Age 60-69' AS "Age", SUM(statisticofinterest_pancreas) as statistic_of_interest FROM tumour_cohort_linked_pancreas WHERE DIAGNOSISYEAR = '2015' AND MORPH_GROUP = 'Carcinoma and Other' AND STAGE_SPLIT23 = 'Stage 4' AND SPLIT_50_TO_80 = 'Age 60-69' AND REGION = 'North of England' UNION ALL SELECT '2015' AS "Year", 'Carcinoma and Other' AS "Tumour Type", 'Stage 4' AS "Stage", 'North of England' AS "Region", 'Female' AS "Sex", 'Age 60-69' AS "Age", SUM(statisticofinterest_pancreas) as statistic_of_interest FROM tumour_cohort_linked_pancreas WHERE DIAGNOSISYEAR = '2015' AND MORPH_GROUP = 'Carcinoma and Other' AND STAGE_SPLIT23 = 'Stage 4' AND SPLIT_50_TO_80 = 'Age 60-69' AND REGION = 'North of England' AND SEX = 'Female' UNION ALL SELECT '2015' AS "Year", 'Carcinoma and Other' AS "Tumour Type", 'Stage 4' AS "Stage", 'North of England' AS "Region", 'Male' AS "Sex", 'Age 60-69' AS "Age", SUM(statisticofinterest_pancreas) as statistic_of_interest FROM tumour_cohort_linked_pancreas WHERE DIAGNOSISYEAR = '2015' AND MORPH_GROUP = 'Carcinoma and Other' AND STAGE_SPLIT23 = 'Stage 4' AND SPLIT_50_TO_80 = 'Age 60-69' AND REGION = 'North of England' AND SEX = 'Male' UNION ALL SELECT '2015' AS "Year", 'Carcinoma and Other' AS "Tumour Type", 'Stage 4' AS "Stage", 'South of England' AS "Region", 'All' AS "Sex", 'Age 60-69' AS "Age", SUM(statisticofinterest_pancreas) as statistic_of_interest FROM tumour_cohort_linked_pancreas WHERE DIAGNOSISYEAR = '2015' AND MORPH_GROUP = 'Carcinoma and Other' AND STAGE_SPLIT23 = 'Stage 4' AND SPLIT_50_TO_80 = 'Age 60-69' AND REGION = 'South of England' UNION ALL SELECT '2015' AS "Year", 'Carcinoma and Other' AS "Tumour Type", 'Stage 4' AS "Stage", 'South of England' AS "Region", 'Female' AS "Sex", 'Age 60-69' AS "Age", SUM(statisticofinterest_pancreas) as statistic_of_interest FROM tumour_cohort_linked_pancreas WHERE DIAGNOSISYEAR = '2015' AND MORPH_GROUP = 'Carcinoma and Other' AND STAGE_SPLIT23 = 'Stage 4' AND SPLIT_50_TO_80 = 'Age 60-69' AND REGION = 'South of England' AND SEX = 'Female' UNION ALL SELECT '2015' AS "Year", 'Carcinoma and Other' AS "Tumour Type", 'Stage 4' AS "Stage", 'South of England' AS "Region", 'Male' AS "Sex", 'Age 60-69' AS "Age", SUM(statisticofinterest_pancreas) as statistic_of_interest FROM tumour_cohort_linked_pancreas WHERE DIAGNOSISYEAR = '2015' AND MORPH_GROUP = 'Carcinoma and Other' AND STAGE_SPLIT23 = 'Stage 4' AND SPLIT_50_TO_80 = 'Age 60-69' AND REGION = 'South of England' AND SEX = 'Male' UNION ALL SELECT '2015' AS "Year", 'Carcinoma and Other' AS "Tumour Type", 'Stage 4' AS "Stage", 'All' AS "Region", 'All' AS "Sex", 'Age 70-79' AS "Age", SUM(statisticofinterest_pancreas) as statistic_of_interest FROM tumour_cohort_linked_pancreas WHERE DIAGNOSISYEAR = '2015' AND MORPH_GROUP = 'Carcinoma and Other' AND STAGE_SPLIT23 = 'Stage 4' AND SPLIT_50_TO_80 = 'Age 70-79' UNION ALL SELECT '2015' AS "Year", 'Carcinoma and Other' AS "Tumour Type", 'Stage 4' AS "Stage", 'London' AS "Region", 'All' AS "Sex", 'Age 70-79' AS "Age", SUM(statisticofinterest_pancreas) as statistic_of_interest FROM tumour_cohort_linked_pancreas WHERE DIAGNOSISYEAR = '2015' AND MORPH_GROUP = 'Carcinoma and Other' AND STAGE_SPLIT23 = 'Stage 4' AND SPLIT_50_TO_80 = 'Age 70-79' AND REGION = 'London' UNION ALL SELECT '2015' AS "Year", 'Carcinoma and Other' AS "Tumour Type", 'Stage 4' AS "Stage", 'Midlands and East of England' AS "Region", 'All' AS "Sex", 'Age 70-79' AS "Age", SUM(statisticofinterest_pancreas) as statistic_of_interest FROM tumour_cohort_linked_pancreas WHERE DIAGNOSISYEAR = '2015' AND MORPH_GROUP = 'Carcinoma and Other' AND STAGE_SPLIT23 = 'Stage 4' AND SPLIT_50_TO_80 = 'Age 70-79' AND REGION = 'Midlands and East of England' UNION ALL SELECT '2015' AS "Year", 'Carcinoma and Other' AS "Tumour Type", 'Stage 4' AS "Stage", 'Midlands and East of England' AS "Region", 'Female' AS "Sex", 'Age 70-79' AS "Age", SUM(statisticofinterest_pancreas) as statistic_of_interest FROM tumour_cohort_linked_pancreas WHERE DIAGNOSISYEAR = '2015' AND MORPH_GROUP = 'Carcinoma and Other' AND STAGE_SPLIT23 = 'Stage 4' AND SPLIT_50_TO_80 = 'Age 70-79' AND REGION = 'Midlands and East of England' AND SEX = 'Female' UNION ALL SELECT '2015' AS "Year", 'Carcinoma and Other' AS "Tumour Type", 'Stage 4' AS "Stage", 'Midlands and East of England' AS "Region", 'Male' AS "Sex", 'Age 70-79' AS "Age", SUM(statisticofinterest_pancreas) as statistic_of_interest FROM tumour_cohort_linked_pancreas WHERE DIAGNOSISYEAR = '2015' AND MORPH_GROUP = 'Carcinoma and Other' AND STAGE_SPLIT23 = 'Stage 4' AND SPLIT_50_TO_80 = 'Age 70-79' AND REGION = 'Midlands and East of England' AND SEX = 'Male' UNION ALL SELECT '2015' AS "Year", 'Carcinoma and Other' AS "Tumour Type", 'Stage 4' AS "Stage", 'North of England' AS "Region", 'All' AS "Sex", 'Age 70-79' AS "Age", SUM(statisticofinterest_pancreas) as statistic_of_interest FROM tumour_cohort_linked_pancreas WHERE DIAGNOSISYEAR = '2015' AND MORPH_GROUP = 'Carcinoma and Other' AND STAGE_SPLIT23 = 'Stage 4' AND SPLIT_50_TO_80 = 'Age 70-79' AND REGION = 'North of England' UNION ALL SELECT '2015' AS "Year", 'Carcinoma and Other' AS "Tumour Type", 'Stage 4' AS "Stage", 'North of England' AS "Region", 'Female' AS "Sex", 'Age 70-79' AS "Age", SUM(statisticofinterest_pancreas) as statistic_of_interest FROM tumour_cohort_linked_pancreas WHERE DIAGNOSISYEAR = '2015' AND MORPH_GROUP = 'Carcinoma and Other' AND STAGE_SPLIT23 = 'Stage 4' AND SPLIT_50_TO_80 = 'Age 70-79' AND REGION = 'North of England' AND SEX = 'Female' UNION ALL SELECT '2015' AS "Year", 'Carcinoma and Other' AS "Tumour Type", 'Stage 4' AS "Stage", 'North of England' AS "Region", 'Male' AS "Sex", 'Age 70-79' AS "Age", SUM(statisticofinterest_pancreas) as statistic_of_interest FROM tumour_cohort_linked_pancreas WHERE DIAGNOSISYEAR = '2015' AND MORPH_GROUP = 'Carcinoma and Other' AND STAGE_SPLIT23 = 'Stage 4' AND SPLIT_50_TO_80 = 'Age 70-79' AND REGION = 'North of England' AND SEX = 'Male' UNION ALL SELECT '2015' AS "Year", 'Carcinoma and Other' AS "Tumour Type", 'Stage 4' AS "Stage", 'South of England' AS "Region", 'All' AS "Sex", 'Age 70-79' AS "Age", SUM(statisticofinterest_pancreas) as statistic_of_interest FROM tumour_cohort_linked_pancreas WHERE DIAGNOSISYEAR = '2015' AND MORPH_GROUP = 'Carcinoma and Other' AND STAGE_SPLIT23 = 'Stage 4' AND SPLIT_50_TO_80 = 'Age 70-79' AND REGION = 'South of England' UNION ALL SELECT '2015' AS "Year", 'Carcinoma and Other' AS "Tumour Type", 'Stage 4' AS "Stage", 'South of England' AS "Region", 'Female' AS "Sex", 'Age 70-79' AS "Age", SUM(statisticofinterest_pancreas) as statistic_of_interest FROM tumour_cohort_linked_pancreas WHERE DIAGNOSISYEAR = '2015' AND MORPH_GROUP = 'Carcinoma and Other' AND STAGE_SPLIT23 = 'Stage 4' AND SPLIT_50_TO_80 = 'Age 70-79' AND REGION = 'South of England' AND SEX = 'Female' UNION ALL SELECT '2015' AS "Year", 'Carcinoma and Other' AS "Tumour Type", 'Stage 4' AS "Stage", 'South of England' AS "Region", 'Male' AS "Sex", 'Age 70-79' AS "Age", SUM(statisticofinterest_pancreas) as statistic_of_interest FROM tumour_cohort_linked_pancreas WHERE DIAGNOSISYEAR = '2015' AND MORPH_GROUP = 'Carcinoma and Other' AND STAGE_SPLIT23 = 'Stage 4' AND SPLIT_50_TO_80 = 'Age 70-79' AND REGION = 'South of England' AND SEX = 'Male' UNION ALL SELECT '2015' AS "Year", 'Carcinoma and Other' AS "Tumour Type", 'Stage 4' AS "Stage", 'All' AS "Region", 'All' AS "Sex", 'Age 80+' AS "Age", SUM(statisticofinterest_pancreas) as statistic_of_interest FROM tumour_cohort_linked_pancreas WHERE DIAGNOSISYEAR = '2015' AND MORPH_GROUP = 'Carcinoma and Other' AND STAGE_SPLIT23 = 'Stage 4' AND SPLIT_50_TO_80 = 'Age 80+' UNION ALL SELECT '2015' AS "Year", 'Carcinoma and Other' AS "Tumour Type", 'Stage 4' AS "Stage", 'London' AS "Region", 'All' AS "Sex", 'Age 80+' AS "Age", SUM(statisticofinterest_pancreas) as statistic_of_interest FROM tumour_cohort_linked_pancreas WHERE DIAGNOSISYEAR = '2015' AND MORPH_GROUP = 'Carcinoma and Other' AND STAGE_SPLIT23 = 'Stage 4' AND SPLIT_50_TO_80 = 'Age 80+' AND REGION = 'London' UNION ALL SELECT '2015' AS "Year", 'Carcinoma and Other' AS "Tumour Type", 'Stage 4' AS "Stage", 'Midlands and East of England' AS "Region", 'All' AS "Sex", 'Age 80+' AS "Age", SUM(statisticofinterest_pancreas) as statistic_of_interest FROM tumour_cohort_linked_pancreas WHERE DIAGNOSISYEAR = '2015' AND MORPH_GROUP = 'Carcinoma and Other' AND STAGE_SPLIT23 = 'Stage 4' AND SPLIT_50_TO_80 = 'Age 80+' AND REGION = 'Midlands and East of England' UNION ALL SELECT '2015' AS "Year", 'Carcinoma and Other' AS "Tumour Type", 'Stage 4' AS "Stage", 'Midlands and East of England' AS "Region", 'Female' AS "Sex", 'Age 80+' AS "Age", SUM(statisticofinterest_pancreas) as statistic_of_interest FROM tumour_cohort_linked_pancreas WHERE DIAGNOSISYEAR = '2015' AND MORPH_GROUP = 'Carcinoma and Other' AND STAGE_SPLIT23 = 'Stage 4' AND SPLIT_50_TO_80 = 'Age 80+' AND REGION = 'Midlands and East of England' AND SEX = 'Female' UNION ALL SELECT '2015' AS "Year", 'Carcinoma and Other' AS "Tumour Type", 'Stage 4' AS "Stage", 'Midlands and East of England' AS "Region", 'Male' AS "Sex", 'Age 80+' AS "Age", SUM(statisticofinterest_pancreas) as statistic_of_interest FROM tumour_cohort_linked_pancreas WHERE DIAGNOSISYEAR = '2015' AND MORPH_GROUP = 'Carcinoma and Other' AND STAGE_SPLIT23 = 'Stage 4' AND SPLIT_50_TO_80 = 'Age 80+' AND REGION = 'Midlands and East of England' AND SEX = 'Male' UNION ALL SELECT '2015' AS "Year", 'Carcinoma and Other' AS "Tumour Type", 'Stage 4' AS "Stage", 'North of England' AS "Region", 'All' AS "Sex", 'Age 80+' AS "Age", SUM(statisticofinterest_pancreas) as statistic_of_interest FROM tumour_cohort_linked_pancreas WHERE DIAGNOSISYEAR = '2015' AND MORPH_GROUP = 'Carcinoma and Other' AND STAGE_SPLIT23 = 'Stage 4' AND SPLIT_50_TO_80 = 'Age 80+' AND REGION = 'North of England' UNION ALL SELECT '2015' AS "Year", 'Carcinoma and Other' AS "Tumour Type", 'Stage 4' AS "Stage", 'North of England' AS "Region", 'Female' AS "Sex", 'Age 80+' AS "Age", SUM(statisticofinterest_pancreas) as statistic_of_interest FROM tumour_cohort_linked_pancreas WHERE DIAGNOSISYEAR = '2015' AND MORPH_GROUP = 'Carcinoma and Other' AND STAGE_SPLIT23 = 'Stage 4' AND SPLIT_50_TO_80 = 'Age 80+' AND REGION = 'North of England' AND SEX = 'Female' UNION ALL SELECT '2015' AS "Year", 'Carcinoma and Other' AS "Tumour Type", 'Stage 4' AS "Stage", 'North of England' AS "Region", 'Male' AS "Sex", 'Age 80+' AS "Age", SUM(statisticofinterest_pancreas) as statistic_of_interest FROM tumour_cohort_linked_pancreas WHERE DIAGNOSISYEAR = '2015' AND MORPH_GROUP = 'Carcinoma and Other' AND STAGE_SPLIT23 = 'Stage 4' AND SPLIT_50_TO_80 = 'Age 80+' AND REGION = 'North of England' AND SEX = 'Male' UNION ALL SELECT '2015' AS "Year", 'Carcinoma and Other' AS "Tumour Type", 'Stage 4' AS "Stage", 'South of England' AS "Region", 'All' AS "Sex", 'Age 80+' AS "Age", SUM(statisticofinterest_pancreas) as statistic_of_interest FROM tumour_cohort_linked_pancreas WHERE DIAGNOSISYEAR = '2015' AND MORPH_GROUP = 'Carcinoma and Other' AND STAGE_SPLIT23 = 'Stage 4' AND SPLIT_50_TO_80 = 'Age 80+' AND REGION = 'South of England' UNION ALL SELECT '2015' AS "Year", 'Carcinoma and Other' AS "Tumour Type", 'Stage 4' AS "Stage", 'South of England' AS "Region", 'Female' AS "Sex", 'Age 80+' AS "Age", SUM(statisticofinterest_pancreas) as statistic_of_interest FROM tumour_cohort_linked_pancreas WHERE DIAGNOSISYEAR = '2015' AND MORPH_GROUP = 'Carcinoma and Other' AND STAGE_SPLIT23 = 'Stage 4' AND SPLIT_50_TO_80 = 'Age 80+' AND REGION = 'South of England' AND SEX = 'Female' UNION ALL SELECT '2015' AS "Year", 'Carcinoma and Other' AS "Tumour Type", 'Stage 4' AS "Stage", 'South of England' AS "Region", 'Male' AS "Sex", 'Age 80+' AS "Age", SUM(statisticofinterest_pancreas) as statistic_of_interest FROM tumour_cohort_linked_pancreas WHERE DIAGNOSISYEAR = '2015' AND MORPH_GROUP = 'Carcinoma and Other' AND STAGE_SPLIT23 = 'Stage 4' AND SPLIT_50_TO_80 = 'Age 80+' AND REGION = 'South of England' AND SEX = 'Male' UNION ALL SELECT '2015' AS "Year", 'Carcinoma and Other' AS "Tumour Type", 'Stage unknown' AS "Stage", 'All' AS "Region", 'All' AS "Sex", 'All' AS "Age", SUM(statisticofinterest_pancreas) as statistic_of_interest FROM tumour_cohort_linked_pancreas WHERE DIAGNOSISYEAR = '2015' AND MORPH_GROUP = 'Carcinoma and Other' AND STAGE_SPLIT23 = 'Stage unknown' UNION ALL SELECT '2015' AS "Year", 'Carcinoma and Other' AS "Tumour Type", 'Stage unknown' AS "Stage", 'All' AS "Region", 'All' AS "Sex", 'Age 00-59' AS "Age", SUM(statisticofinterest_pancreas) as statistic_of_interest FROM tumour_cohort_linked_pancreas WHERE DIAGNOSISYEAR = '2015' AND MORPH_GROUP = 'Carcinoma and Other' AND STAGE_SPLIT23 = 'Stage unknown' AND SPLIT_60_TO_80 = 'Age 00-59' UNION ALL SELECT '2015' AS "Year", 'Carcinoma and Other' AS "Tumour Type", 'Stage unknown' AS "Stage", 'All' AS "Region", 'All' AS "Sex", 'Age 60-69' AS "Age", SUM(statisticofinterest_pancreas) as statistic_of_interest FROM tumour_cohort_linked_pancreas WHERE DIAGNOSISYEAR = '2015' AND MORPH_GROUP = 'Carcinoma and Other' AND STAGE_SPLIT23 = 'Stage unknown' AND SPLIT_60_TO_80 = 'Age 60-69' UNION ALL SELECT '2015' AS "Year", 'Carcinoma and Other' AS "Tumour Type", 'Stage unknown' AS "Stage", 'All' AS "Region", 'Female' AS "Sex", 'Age 60-69' AS "Age", SUM(statisticofinterest_pancreas) as statistic_of_interest FROM tumour_cohort_linked_pancreas WHERE DIAGNOSISYEAR = '2015' AND MORPH_GROUP = 'Carcinoma and Other' AND STAGE_SPLIT23 = 'Stage unknown' AND SPLIT_60_TO_80 = 'Age 60-69' AND SEX = 'Female' UNION ALL SELECT '2015' AS "Year", 'Carcinoma and Other' AS "Tumour Type", 'Stage unknown' AS "Stage", 'All' AS "Region", 'Male' AS "Sex", 'Age 60-69' AS "Age", SUM(statisticofinterest_pancreas) as statistic_of_interest FROM tumour_cohort_linked_pancreas WHERE DIAGNOSISYEAR = '2015' AND MORPH_GROUP = 'Carcinoma and Other' AND STAGE_SPLIT23 = 'Stage unknown' AND SPLIT_60_TO_80 = 'Age 60-69' AND SEX = 'Male' UNION ALL SELECT '2015' AS "Year", 'Carcinoma and Other' AS "Tumour Type", 'Stage unknown' AS "Stage", 'All' AS "Region", 'All' AS "Sex", 'Age 70-79' AS "Age", SUM(statisticofinterest_pancreas) as statistic_of_interest FROM tumour_cohort_linked_pancreas WHERE DIAGNOSISYEAR = '2015' AND MORPH_GROUP = 'Carcinoma and Other' AND STAGE_SPLIT23 = 'Stage unknown' AND SPLIT_60_TO_80 = 'Age 70-79' UNION ALL SELECT '2015' AS "Year", 'Carcinoma and Other' AS "Tumour Type", 'Stage unknown' AS "Stage", 'All' AS "Region", 'Female' AS "Sex", 'Age 70-79' AS "Age", SUM(statisticofinterest_pancreas) as statistic_of_interest FROM tumour_cohort_linked_pancreas WHERE DIAGNOSISYEAR = '2015' AND MORPH_GROUP = 'Carcinoma and Other' AND STAGE_SPLIT23 = 'Stage unknown' AND SPLIT_60_TO_80 = 'Age 70-79' AND SEX = 'Female' UNION ALL SELECT '2015' AS "Year", 'Carcinoma and Other' AS "Tumour Type", 'Stage unknown' AS "Stage", 'All' AS "Region", 'Male' AS "Sex", 'Age 70-79' AS "Age", SUM(statisticofinterest_pancreas) as statistic_of_interest FROM tumour_cohort_linked_pancreas WHERE DIAGNOSISYEAR = '2015' AND MORPH_GROUP = 'Carcinoma and Other' AND STAGE_SPLIT23 = 'Stage unknown' AND SPLIT_60_TO_80 = 'Age 70-79' AND SEX = 'Male' UNION ALL SELECT '2015' AS "Year", 'Carcinoma and Other' AS "Tumour Type", 'Stage unknown' AS "Stage", 'All' AS "Region", 'All' AS "Sex", 'Age 80+' AS "Age", SUM(statisticofinterest_pancreas) as statistic_of_interest FROM tumour_cohort_linked_pancreas WHERE DIAGNOSISYEAR = '2015' AND MORPH_GROUP = 'Carcinoma and Other' AND STAGE_SPLIT23 = 'Stage unknown' AND SPLIT_60_TO_80 = 'Age 80+' UNION ALL SELECT '2015' AS "Year", 'Carcinoma and Other' AS "Tumour Type", 'Stage unknown' AS "Stage", 'All' AS "Region", 'Female' AS "Sex", 'Age 80+' AS "Age", SUM(statisticofinterest_pancreas) as statistic_of_interest FROM tumour_cohort_linked_pancreas WHERE DIAGNOSISYEAR = '2015' AND MORPH_GROUP = 'Carcinoma and Other' AND STAGE_SPLIT23 = 'Stage unknown' AND SPLIT_60_TO_80 = 'Age 80+' AND SEX = 'Female' UNION ALL SELECT '2015' AS "Year", 'Carcinoma and Other' AS "Tumour Type", 'Stage unknown' AS "Stage", 'All' AS "Region", 'Male' AS "Sex", 'Age 80+' AS "Age", SUM(statisticofinterest_pancreas) as statistic_of_interest FROM tumour_cohort_linked_pancreas WHERE DIAGNOSISYEAR = '2015' AND MORPH_GROUP = 'Carcinoma and Other' AND STAGE_SPLIT23 = 'Stage unknown' AND SPLIT_60_TO_80 = 'Age 80+' AND SEX = 'Male' UNION ALL SELECT '2015' AS "Year", 'Neuroendocrine' AS "Tumour Type", 'All' AS "Stage", 'All' AS "Region", 'All' AS "Sex", 'All' AS "Age", SUM(statisticofinterest_pancreas) as statistic_of_interest FROM tumour_cohort_linked_pancreas WHERE DIAGNOSISYEAR = '2015' AND MORPH_GROUP = 'Neuroendocrine' UNION ALL SELECT '2015' AS "Year", 'Neuroendocrine' AS "Tumour Type", 'All' AS "Stage", 'All' AS "Region", 'All' AS "Sex", 'Age 00-49' AS "Age", SUM(statisticofinterest_pancreas) as statistic_of_interest FROM tumour_cohort_linked_pancreas WHERE DIAGNOSISYEAR = '2015' AND MORPH_GROUP = 'Neuroendocrine' AND SPLIT_50_TO_70 = 'Age 00-49' UNION ALL SELECT '2015' AS "Year", 'Neuroendocrine' AS "Tumour Type", 'All' AS "Stage", 'All' AS "Region", 'All' AS "Sex", 'Age 50-59' AS "Age", SUM(statisticofinterest_pancreas) as statistic_of_interest FROM tumour_cohort_linked_pancreas WHERE DIAGNOSISYEAR = '2015' AND MORPH_GROUP = 'Neuroendocrine' AND SPLIT_50_TO_70 = 'Age 50-59' UNION ALL SELECT '2015' AS "Year", 'Neuroendocrine' AS "Tumour Type", 'All' AS "Stage", 'All' AS "Region", 'All' AS "Sex", 'Age 60-69' AS "Age", SUM(statisticofinterest_pancreas) as statistic_of_interest FROM tumour_cohort_linked_pancreas WHERE DIAGNOSISYEAR = '2015' AND MORPH_GROUP = 'Neuroendocrine' AND SPLIT_50_TO_70 = 'Age 60-69' UNION ALL SELECT '2015' AS "Year", 'Neuroendocrine' AS "Tumour Type", 'All' AS "Stage", 'All' AS "Region", 'All' AS "Sex", 'Age 70+' AS "Age", SUM(statisticofinterest_pancreas) as statistic_of_interest FROM tumour_cohort_linked_pancreas WHERE DIAGNOSISYEAR = '2015' AND MORPH_GROUP = 'Neuroendocrine' AND SPLIT_50_TO_70 = 'Age 70+' UNION ALL SELECT '2016' AS "Year", 'All' AS "Tumour Type", 'All' AS "Stage", 'All' AS "Region", 'All' AS "Sex", 'All' AS "Age", SUM(statisticofinterest_pancreas) as statistic_of_interest FROM tumour_cohort_linked_pancreas WHERE DIAGNOSISYEAR = '2016' UNION ALL SELECT '2016' AS "Year", 'Carcinoma and Other' AS "Tumour Type", 'All' AS "Stage", 'All' AS "Region", 'All' AS "Sex", 'All' AS "Age", SUM(statisticofinterest_pancreas) as statistic_of_interest FROM tumour_cohort_linked_pancreas WHERE DIAGNOSISYEAR = '2016' AND MORPH_GROUP = 'Carcinoma and Other' UNION ALL SELECT '2016' AS "Year", 'Carcinoma and Other' AS "Tumour Type", 'Stage 1-2' AS "Stage", 'All' AS "Region", 'All' AS "Sex", 'All' AS "Age", SUM(statisticofinterest_pancreas) as statistic_of_interest FROM tumour_cohort_linked_pancreas WHERE DIAGNOSISYEAR = '2016' AND MORPH_GROUP = 'Carcinoma and Other' AND STAGE_SPLIT23 = 'Stage 1-2' UNION ALL SELECT '2016' AS "Year", 'Carcinoma and Other' AS "Tumour Type", 'Stage 1-2' AS "Stage", 'All' AS "Region", 'All' AS "Sex", 'Age 00-59' AS "Age", SUM(statisticofinterest_pancreas) as statistic_of_interest FROM tumour_cohort_linked_pancreas WHERE DIAGNOSISYEAR = '2016' AND MORPH_GROUP = 'Carcinoma and Other' AND STAGE_SPLIT23 = 'Stage 1-2' AND SPLIT_60_TO_80 = 'Age 00-59' UNION ALL SELECT '2016' AS "Year", 'Carcinoma and Other' AS "Tumour Type", 'Stage 1-2' AS "Stage", 'All' AS "Region", 'All' AS "Sex", 'Age 60-69' AS "Age", SUM(statisticofinterest_pancreas) as statistic_of_interest FROM tumour_cohort_linked_pancreas WHERE DIAGNOSISYEAR = '2016' AND MORPH_GROUP = 'Carcinoma and Other' AND STAGE_SPLIT23 = 'Stage 1-2' AND SPLIT_60_TO_80 = 'Age 60-69' UNION ALL SELECT '2016' AS "Year", 'Carcinoma and Other' AS "Tumour Type", 'Stage 1-2' AS "Stage", 'All' AS "Region", 'Female' AS "Sex", 'Age 60-69' AS "Age", SUM(statisticofinterest_pancreas) as statistic_of_interest FROM tumour_cohort_linked_pancreas WHERE DIAGNOSISYEAR = '2016' AND MORPH_GROUP = 'Carcinoma and Other' AND STAGE_SPLIT23 = 'Stage 1-2' AND SPLIT_60_TO_80 = 'Age 60-69' AND SEX = 'Female' UNION ALL SELECT '2016' AS "Year", 'Carcinoma and Other' AS "Tumour Type", 'Stage 1-2' AS "Stage", 'All' AS "Region", 'Male' AS "Sex", 'Age 60-69' AS "Age", SUM(statisticofinterest_pancreas) as statistic_of_interest FROM tumour_cohort_linked_pancreas WHERE DIAGNOSISYEAR = '2016' AND MORPH_GROUP = 'Carcinoma and Other' AND STAGE_SPLIT23 = 'Stage 1-2' AND SPLIT_60_TO_80 = 'Age 60-69' AND SEX = 'Male' UNION ALL SELECT '2016' AS "Year", 'Carcinoma and Other' AS "Tumour Type", 'Stage 1-2' AS "Stage", 'All' AS "Region", 'All' AS "Sex", 'Age 70-79' AS "Age", SUM(statisticofinterest_pancreas) as statistic_of_interest FROM tumour_cohort_linked_pancreas WHERE DIAGNOSISYEAR = '2016' AND MORPH_GROUP = 'Carcinoma and Other' AND STAGE_SPLIT23 = 'Stage 1-2' AND SPLIT_60_TO_80 = 'Age 70-79' UNION ALL SELECT '2016' AS "Year", 'Carcinoma and Other' AS "Tumour Type", 'Stage 1-2' AS "Stage", 'All' AS "Region", 'Female' AS "Sex", 'Age 70-79' AS "Age", SUM(statisticofinterest_pancreas) as statistic_of_interest FROM tumour_cohort_linked_pancreas WHERE DIAGNOSISYEAR = '2016' AND MORPH_GROUP = 'Carcinoma and Other' AND STAGE_SPLIT23 = 'Stage 1-2' AND SPLIT_60_TO_80 = 'Age 70-79' AND SEX = 'Female' UNION ALL SELECT '2016' AS "Year", 'Carcinoma and Other' AS "Tumour Type", 'Stage 1-2' AS "Stage", 'All' AS "Region", 'Male' AS "Sex", 'Age 70-79' AS "Age", SUM(statisticofinterest_pancreas) as statistic_of_interest FROM tumour_cohort_linked_pancreas WHERE DIAGNOSISYEAR = '2016' AND MORPH_GROUP = 'Carcinoma and Other' AND STAGE_SPLIT23 = 'Stage 1-2' AND SPLIT_60_TO_80 = 'Age 70-79' AND SEX = 'Male' UNION ALL SELECT '2016' AS "Year", 'Carcinoma and Other' AS "Tumour Type", 'Stage 1-2' AS "Stage", 'All' AS "Region", 'All' AS "Sex", 'Age 80+' AS "Age", SUM(statisticofinterest_pancreas) as statistic_of_interest FROM tumour_cohort_linked_pancreas WHERE DIAGNOSISYEAR = '2016' AND MORPH_GROUP = 'Carcinoma and Other' AND STAGE_SPLIT23 = 'Stage 1-2' AND SPLIT_60_TO_80 = 'Age 80+' UNION ALL SELECT '2016' AS "Year", 'Carcinoma and Other' AS "Tumour Type", 'Stage 1-2' AS "Stage", 'All' AS "Region", 'Female' AS "Sex", 'Age 80+' AS "Age", SUM(statisticofinterest_pancreas) as statistic_of_interest FROM tumour_cohort_linked_pancreas WHERE DIAGNOSISYEAR = '2016' AND MORPH_GROUP = 'Carcinoma and Other' AND STAGE_SPLIT23 = 'Stage 1-2' AND SPLIT_60_TO_80 = 'Age 80+' AND SEX = 'Female' UNION ALL SELECT '2016' AS "Year", 'Carcinoma and Other' AS "Tumour Type", 'Stage 1-2' AS "Stage", 'All' AS "Region", 'Male' AS "Sex", 'Age 80+' AS "Age", SUM(statisticofinterest_pancreas) as statistic_of_interest FROM tumour_cohort_linked_pancreas WHERE DIAGNOSISYEAR = '2016' AND MORPH_GROUP = 'Carcinoma and Other' AND STAGE_SPLIT23 = 'Stage 1-2' AND SPLIT_60_TO_80 = 'Age 80+' AND SEX = 'Male' UNION ALL SELECT '2016' AS "Year", 'Carcinoma and Other' AS "Tumour Type", 'Stage 3' AS "Stage", 'All' AS "Region", 'All' AS "Sex", 'All' AS "Age", SUM(statisticofinterest_pancreas) as statistic_of_interest FROM tumour_cohort_linked_pancreas WHERE DIAGNOSISYEAR = '2016' AND MORPH_GROUP = 'Carcinoma and Other' AND STAGE_SPLIT23 = 'Stage 3' UNION ALL SELECT '2016' AS "Year", 'Carcinoma and Other' AS "Tumour Type", 'Stage 3' AS "Stage", 'All' AS "Region", 'All' AS "Sex", 'Age 00-59' AS "Age", SUM(statisticofinterest_pancreas) as statistic_of_interest FROM tumour_cohort_linked_pancreas WHERE DIAGNOSISYEAR = '2016' AND MORPH_GROUP = 'Carcinoma and Other' AND STAGE_SPLIT23 = 'Stage 3' AND SPLIT_60_70 = 'Age 00-59' UNION ALL SELECT '2016' AS "Year", 'Carcinoma and Other' AS "Tumour Type", 'Stage 3' AS "Stage", 'All' AS "Region", 'All' AS "Sex", 'Age 60-69' AS "Age", SUM(statisticofinterest_pancreas) as statistic_of_interest FROM tumour_cohort_linked_pancreas WHERE DIAGNOSISYEAR = '2016' AND MORPH_GROUP = 'Carcinoma and Other' AND STAGE_SPLIT23 = 'Stage 3' AND SPLIT_60_70 = 'Age 60-69' UNION ALL SELECT '2016' AS "Year", 'Carcinoma and Other' AS "Tumour Type", 'Stage 3' AS "Stage", 'All' AS "Region", 'All' AS "Sex", 'Age 70+' AS "Age", SUM(statisticofinterest_pancreas) as statistic_of_interest FROM tumour_cohort_linked_pancreas WHERE DIAGNOSISYEAR = '2016' AND MORPH_GROUP = 'Carcinoma and Other' AND STAGE_SPLIT23 = 'Stage 3' AND SPLIT_60_70 = 'Age 70+' UNION ALL SELECT '2016' AS "Year", 'Carcinoma and Other' AS "Tumour Type", 'Stage 3' AS "Stage", 'All' AS "Region", 'Female' AS "Sex", 'Age 70+' AS "Age", SUM(statisticofinterest_pancreas) as statistic_of_interest FROM tumour_cohort_linked_pancreas WHERE DIAGNOSISYEAR = '2016' AND MORPH_GROUP = 'Carcinoma and Other' AND STAGE_SPLIT23 = 'Stage 3' AND SPLIT_60_70 = 'Age 70+' AND SEX = 'Female' UNION ALL SELECT '2016' AS "Year", 'Carcinoma and Other' AS "Tumour Type", 'Stage 3' AS "Stage", 'All' AS "Region", 'Male' AS "Sex", 'Age 70+' AS "Age", SUM(statisticofinterest_pancreas) as statistic_of_interest FROM tumour_cohort_linked_pancreas WHERE DIAGNOSISYEAR = '2016' AND MORPH_GROUP = 'Carcinoma and Other' AND STAGE_SPLIT23 = 'Stage 3' AND SPLIT_60_70 = 'Age 70+' AND SEX = 'Male' UNION ALL SELECT '2016' AS "Year", 'Carcinoma and Other' AS "Tumour Type", 'Stage 4' AS "Stage", 'All' AS "Region", 'All' AS "Sex", 'All' AS "Age", SUM(statisticofinterest_pancreas) as statistic_of_interest FROM tumour_cohort_linked_pancreas WHERE DIAGNOSISYEAR = '2016' AND MORPH_GROUP = 'Carcinoma and Other' AND STAGE_SPLIT23 = 'Stage 4' UNION ALL SELECT '2016' AS "Year", 'Carcinoma and Other' AS "Tumour Type", 'Stage 4' AS "Stage", 'All' AS "Region", 'All' AS "Sex", 'Age 00-49' AS "Age", SUM(statisticofinterest_pancreas) as statistic_of_interest FROM tumour_cohort_linked_pancreas WHERE DIAGNOSISYEAR = '2016' AND MORPH_GROUP = 'Carcinoma and Other' AND STAGE_SPLIT23 = 'Stage 4' AND SPLIT_50_TO_80 = 'Age 00-49' UNION ALL SELECT '2016' AS "Year", 'Carcinoma and Other' AS "Tumour Type", 'Stage 4' AS "Stage", 'All' AS "Region", 'All' AS "Sex", 'Age 50-59' AS "Age", SUM(statisticofinterest_pancreas) as statistic_of_interest FROM tumour_cohort_linked_pancreas WHERE DIAGNOSISYEAR = '2016' AND MORPH_GROUP = 'Carcinoma and Other' AND STAGE_SPLIT23 = 'Stage 4' AND SPLIT_50_TO_80 = 'Age 50-59' UNION ALL SELECT '2016' AS "Year", 'Carcinoma and Other' AS "Tumour Type", 'Stage 4' AS "Stage", 'All' AS "Region", 'All' AS "Sex", 'Age 60-69' AS "Age", SUM(statisticofinterest_pancreas) as statistic_of_interest FROM tumour_cohort_linked_pancreas WHERE DIAGNOSISYEAR = '2016' AND MORPH_GROUP = 'Carcinoma and Other' AND STAGE_SPLIT23 = 'Stage 4' AND SPLIT_50_TO_80 = 'Age 60-69' UNION ALL SELECT '2016' AS "Year", 'Carcinoma and Other' AS "Tumour Type", 'Stage 4' AS "Stage", 'London' AS "Region", 'All' AS "Sex", 'Age 60-69' AS "Age", SUM(statisticofinterest_pancreas) as statistic_of_interest FROM tumour_cohort_linked_pancreas WHERE DIAGNOSISYEAR = '2016' AND MORPH_GROUP = 'Carcinoma and Other' AND STAGE_SPLIT23 = 'Stage 4' AND SPLIT_50_TO_80 = 'Age 60-69' AND REGION = 'London' UNION ALL SELECT '2016' AS "Year", 'Carcinoma and Other' AS "Tumour Type", 'Stage 4' AS "Stage", 'Midlands and East of England' AS "Region", 'All' AS "Sex", 'Age 60-69' AS "Age", SUM(statisticofinterest_pancreas) as statistic_of_interest FROM tumour_cohort_linked_pancreas WHERE DIAGNOSISYEAR = '2016' AND MORPH_GROUP = 'Carcinoma and Other' AND STAGE_SPLIT23 = 'Stage 4' AND SPLIT_50_TO_80 = 'Age 60-69' AND REGION = 'Midlands and East of England' UNION ALL SELECT '2016' AS "Year", 'Carcinoma and Other' AS "Tumour Type", 'Stage 4' AS "Stage", 'Midlands and East of England' AS "Region", 'Female' AS "Sex", 'Age 60-69' AS "Age", SUM(statisticofinterest_pancreas) as statistic_of_interest FROM tumour_cohort_linked_pancreas WHERE DIAGNOSISYEAR = '2016' AND MORPH_GROUP = 'Carcinoma and Other' AND STAGE_SPLIT23 = 'Stage 4' AND SPLIT_50_TO_80 = 'Age 60-69' AND REGION = 'Midlands and East of England' AND SEX = 'Female' UNION ALL SELECT '2016' AS "Year", 'Carcinoma and Other' AS "Tumour Type", 'Stage 4' AS "Stage", 'Midlands and East of England' AS "Region", 'Male' AS "Sex", 'Age 60-69' AS "Age", SUM(statisticofinterest_pancreas) as statistic_of_interest FROM tumour_cohort_linked_pancreas WHERE DIAGNOSISYEAR = '2016' AND MORPH_GROUP = 'Carcinoma and Other' AND STAGE_SPLIT23 = 'Stage 4' AND SPLIT_50_TO_80 = 'Age 60-69' AND REGION = 'Midlands and East of England' AND SEX = 'Male' UNION ALL SELECT '2016' AS "Year", 'Carcinoma and Other' AS "Tumour Type", 'Stage 4' AS "Stage", 'North of England' AS "Region", 'All' AS "Sex", 'Age 60-69' AS "Age", SUM(statisticofinterest_pancreas) as statistic_of_interest FROM tumour_cohort_linked_pancreas WHERE DIAGNOSISYEAR = '2016' AND MORPH_GROUP = 'Carcinoma and Other' AND STAGE_SPLIT23 = 'Stage 4' AND SPLIT_50_TO_80 = 'Age 60-69' AND REGION = 'North of England' UNION ALL SELECT '2016' AS "Year", 'Carcinoma and Other' AS "Tumour Type", 'Stage 4' AS "Stage", 'North of England' AS "Region", 'Female' AS "Sex", 'Age 60-69' AS "Age", SUM(statisticofinterest_pancreas) as statistic_of_interest FROM tumour_cohort_linked_pancreas WHERE DIAGNOSISYEAR = '2016' AND MORPH_GROUP = 'Carcinoma and Other' AND STAGE_SPLIT23 = 'Stage 4' AND SPLIT_50_TO_80 = 'Age 60-69' AND REGION = 'North of England' AND SEX = 'Female' UNION ALL SELECT '2016' AS "Year", 'Carcinoma and Other' AS "Tumour Type", 'Stage 4' AS "Stage", 'North of England' AS "Region", 'Male' AS "Sex", 'Age 60-69' AS "Age", SUM(statisticofinterest_pancreas) as statistic_of_interest FROM tumour_cohort_linked_pancreas WHERE DIAGNOSISYEAR = '2016' AND MORPH_GROUP = 'Carcinoma and Other' AND STAGE_SPLIT23 = 'Stage 4' AND SPLIT_50_TO_80 = 'Age 60-69' AND REGION = 'North of England' AND SEX = 'Male' UNION ALL SELECT '2016' AS "Year", 'Carcinoma and Other' AS "Tumour Type", 'Stage 4' AS "Stage", 'South of England' AS "Region", 'All' AS "Sex", 'Age 60-69' AS "Age", SUM(statisticofinterest_pancreas) as statistic_of_interest FROM tumour_cohort_linked_pancreas WHERE DIAGNOSISYEAR = '2016' AND MORPH_GROUP = 'Carcinoma and Other' AND STAGE_SPLIT23 = 'Stage 4' AND SPLIT_50_TO_80 = 'Age 60-69' AND REGION = 'South of England' UNION ALL SELECT '2016' AS "Year", 'Carcinoma and Other' AS "Tumour Type", 'Stage 4' AS "Stage", 'South of England' AS "Region", 'Female' AS "Sex", 'Age 60-69' AS "Age", SUM(statisticofinterest_pancreas) as statistic_of_interest FROM tumour_cohort_linked_pancreas WHERE DIAGNOSISYEAR = '2016' AND MORPH_GROUP = 'Carcinoma and Other' AND STAGE_SPLIT23 = 'Stage 4' AND SPLIT_50_TO_80 = 'Age 60-69' AND REGION = 'South of England' AND SEX = 'Female' UNION ALL SELECT '2016' AS "Year", 'Carcinoma and Other' AS "Tumour Type", 'Stage 4' AS "Stage", 'South of England' AS "Region", 'Male' AS "Sex", 'Age 60-69' AS "Age", SUM(statisticofinterest_pancreas) as statistic_of_interest FROM tumour_cohort_linked_pancreas WHERE DIAGNOSISYEAR = '2016' AND MORPH_GROUP = 'Carcinoma and Other' AND STAGE_SPLIT23 = 'Stage 4' AND SPLIT_50_TO_80 = 'Age 60-69' AND REGION = 'South of England' AND SEX = 'Male' UNION ALL SELECT '2016' AS "Year", 'Carcinoma and Other' AS "Tumour Type", 'Stage 4' AS "Stage", 'All' AS "Region", 'All' AS "Sex", 'Age 70-79' AS "Age", SUM(statisticofinterest_pancreas) as statistic_of_interest FROM tumour_cohort_linked_pancreas WHERE DIAGNOSISYEAR = '2016' AND MORPH_GROUP = 'Carcinoma and Other' AND STAGE_SPLIT23 = 'Stage 4' AND SPLIT_50_TO_80 = 'Age 70-79' UNION ALL SELECT '2016' AS "Year", 'Carcinoma and Other' AS "Tumour Type", 'Stage 4' AS "Stage", 'London' AS "Region", 'All' AS "Sex", 'Age 70-79' AS "Age", SUM(statisticofinterest_pancreas) as statistic_of_interest FROM tumour_cohort_linked_pancreas WHERE DIAGNOSISYEAR = '2016' AND MORPH_GROUP = 'Carcinoma and Other' AND STAGE_SPLIT23 = 'Stage 4' AND SPLIT_50_TO_80 = 'Age 70-79' AND REGION = 'London' UNION ALL SELECT '2016' AS "Year", 'Carcinoma and Other' AS "Tumour Type", 'Stage 4' AS "Stage", 'Midlands and East of England' AS "Region", 'All' AS "Sex", 'Age 70-79' AS "Age", SUM(statisticofinterest_pancreas) as statistic_of_interest FROM tumour_cohort_linked_pancreas WHERE DIAGNOSISYEAR = '2016' AND MORPH_GROUP = 'Carcinoma and Other' AND STAGE_SPLIT23 = 'Stage 4' AND SPLIT_50_TO_80 = 'Age 70-79' AND REGION = 'Midlands and East of England' UNION ALL SELECT '2016' AS "Year", 'Carcinoma and Other' AS "Tumour Type", 'Stage 4' AS "Stage", 'Midlands and East of England' AS "Region", 'Female' AS "Sex", 'Age 70-79' AS "Age", SUM(statisticofinterest_pancreas) as statistic_of_interest FROM tumour_cohort_linked_pancreas WHERE DIAGNOSISYEAR = '2016' AND MORPH_GROUP = 'Carcinoma and Other' AND STAGE_SPLIT23 = 'Stage 4' AND SPLIT_50_TO_80 = 'Age 70-79' AND REGION = 'Midlands and East of England' AND SEX = 'Female' UNION ALL SELECT '2016' AS "Year", 'Carcinoma and Other' AS "Tumour Type", 'Stage 4' AS "Stage", 'Midlands and East of England' AS "Region", 'Male' AS "Sex", 'Age 70-79' AS "Age", SUM(statisticofinterest_pancreas) as statistic_of_interest FROM tumour_cohort_linked_pancreas WHERE DIAGNOSISYEAR = '2016' AND MORPH_GROUP = 'Carcinoma and Other' AND STAGE_SPLIT23 = 'Stage 4' AND SPLIT_50_TO_80 = 'Age 70-79' AND REGION = 'Midlands and East of England' AND SEX = 'Male' UNION ALL SELECT '2016' AS "Year", 'Carcinoma and Other' AS "Tumour Type", 'Stage 4' AS "Stage", 'North of England' AS "Region", 'All' AS "Sex", 'Age 70-79' AS "Age", SUM(statisticofinterest_pancreas) as statistic_of_interest FROM tumour_cohort_linked_pancreas WHERE DIAGNOSISYEAR = '2016' AND MORPH_GROUP = 'Carcinoma and Other' AND STAGE_SPLIT23 = 'Stage 4' AND SPLIT_50_TO_80 = 'Age 70-79' AND REGION = 'North of England' UNION ALL SELECT '2016' AS "Year", 'Carcinoma and Other' AS "Tumour Type", 'Stage 4' AS "Stage", 'North of England' AS "Region", 'Female' AS "Sex", 'Age 70-79' AS "Age", SUM(statisticofinterest_pancreas) as statistic_of_interest FROM tumour_cohort_linked_pancreas WHERE DIAGNOSISYEAR = '2016' AND MORPH_GROUP = 'Carcinoma and Other' AND STAGE_SPLIT23 = 'Stage 4' AND SPLIT_50_TO_80 = 'Age 70-79' AND REGION = 'North of England' AND SEX = 'Female' UNION ALL SELECT '2016' AS "Year", 'Carcinoma and Other' AS "Tumour Type", 'Stage 4' AS "Stage", 'North of England' AS "Region", 'Male' AS "Sex", 'Age 70-79' AS "Age", SUM(statisticofinterest_pancreas) as statistic_of_interest FROM tumour_cohort_linked_pancreas WHERE DIAGNOSISYEAR = '2016' AND MORPH_GROUP = 'Carcinoma and Other' AND STAGE_SPLIT23 = 'Stage 4' AND SPLIT_50_TO_80 = 'Age 70-79' AND REGION = 'North of England' AND SEX = 'Male' UNION ALL SELECT '2016' AS "Year", 'Carcinoma and Other' AS "Tumour Type", 'Stage 4' AS "Stage", 'South of England' AS "Region", 'All' AS "Sex", 'Age 70-79' AS "Age", SUM(statisticofinterest_pancreas) as statistic_of_interest FROM tumour_cohort_linked_pancreas WHERE DIAGNOSISYEAR = '2016' AND MORPH_GROUP = 'Carcinoma and Other' AND STAGE_SPLIT23 = 'Stage 4' AND SPLIT_50_TO_80 = 'Age 70-79' AND REGION = 'South of England' UNION ALL SELECT '2016' AS "Year", 'Carcinoma and Other' AS "Tumour Type", 'Stage 4' AS "Stage", 'South of England' AS "Region", 'Female' AS "Sex", 'Age 70-79' AS "Age", SUM(statisticofinterest_pancreas) as statistic_of_interest FROM tumour_cohort_linked_pancreas WHERE DIAGNOSISYEAR = '2016' AND MORPH_GROUP = 'Carcinoma and Other' AND STAGE_SPLIT23 = 'Stage 4' AND SPLIT_50_TO_80 = 'Age 70-79' AND REGION = 'South of England' AND SEX = 'Female' UNION ALL SELECT '2016' AS "Year", 'Carcinoma and Other' AS "Tumour Type", 'Stage 4' AS "Stage", 'South of England' AS "Region", 'Male' AS "Sex", 'Age 70-79' AS "Age", SUM(statisticofinterest_pancreas) as statistic_of_interest FROM tumour_cohort_linked_pancreas WHERE DIAGNOSISYEAR = '2016' AND MORPH_GROUP = 'Carcinoma and Other' AND STAGE_SPLIT23 = 'Stage 4' AND SPLIT_50_TO_80 = 'Age 70-79' AND REGION = 'South of England' AND SEX = 'Male' UNION ALL SELECT '2016' AS "Year", 'Carcinoma and Other' AS "Tumour Type", 'Stage 4' AS "Stage", 'All' AS "Region", 'All' AS "Sex", 'Age 80+' AS "Age", SUM(statisticofinterest_pancreas) as statistic_of_interest FROM tumour_cohort_linked_pancreas WHERE DIAGNOSISYEAR = '2016' AND MORPH_GROUP = 'Carcinoma and Other' AND STAGE_SPLIT23 = 'Stage 4' AND SPLIT_50_TO_80 = 'Age 80+' UNION ALL SELECT '2016' AS "Year", 'Carcinoma and Other' AS "Tumour Type", 'Stage 4' AS "Stage", 'London' AS "Region", 'All' AS "Sex", 'Age 80+' AS "Age", SUM(statisticofinterest_pancreas) as statistic_of_interest FROM tumour_cohort_linked_pancreas WHERE DIAGNOSISYEAR = '2016' AND MORPH_GROUP = 'Carcinoma and Other' AND STAGE_SPLIT23 = 'Stage 4' AND SPLIT_50_TO_80 = 'Age 80+' AND REGION = 'London' UNION ALL SELECT '2016' AS "Year", 'Carcinoma and Other' AS "Tumour Type", 'Stage 4' AS "Stage", 'Midlands and East of England' AS "Region", 'All' AS "Sex", 'Age 80+' AS "Age", SUM(statisticofinterest_pancreas) as statistic_of_interest FROM tumour_cohort_linked_pancreas WHERE DIAGNOSISYEAR = '2016' AND MORPH_GROUP = 'Carcinoma and Other' AND STAGE_SPLIT23 = 'Stage 4' AND SPLIT_50_TO_80 = 'Age 80+' AND REGION = 'Midlands and East of England' UNION ALL SELECT '2016' AS "Year", 'Carcinoma and Other' AS "Tumour Type", 'Stage 4' AS "Stage", 'Midlands and East of England' AS "Region", 'Female' AS "Sex", 'Age 80+' AS "Age", SUM(statisticofinterest_pancreas) as statistic_of_interest FROM tumour_cohort_linked_pancreas WHERE DIAGNOSISYEAR = '2016' AND MORPH_GROUP = 'Carcinoma and Other' AND STAGE_SPLIT23 = 'Stage 4' AND SPLIT_50_TO_80 = 'Age 80+' AND REGION = 'Midlands and East of England' AND SEX = 'Female' UNION ALL SELECT '2016' AS "Year", 'Carcinoma and Other' AS "Tumour Type", 'Stage 4' AS "Stage", 'Midlands and East of England' AS "Region", 'Male' AS "Sex", 'Age 80+' AS "Age", SUM(statisticofinterest_pancreas) as statistic_of_interest FROM tumour_cohort_linked_pancreas WHERE DIAGNOSISYEAR = '2016' AND MORPH_GROUP = 'Carcinoma and Other' AND STAGE_SPLIT23 = 'Stage 4' AND SPLIT_50_TO_80 = 'Age 80+' AND REGION = 'Midlands and East of England' AND SEX = 'Male' UNION ALL SELECT '2016' AS "Year", 'Carcinoma and Other' AS "Tumour Type", 'Stage 4' AS "Stage", 'North of England' AS "Region", 'All' AS "Sex", 'Age 80+' AS "Age", SUM(statisticofinterest_pancreas) as statistic_of_interest FROM tumour_cohort_linked_pancreas WHERE DIAGNOSISYEAR = '2016' AND MORPH_GROUP = 'Carcinoma and Other' AND STAGE_SPLIT23 = 'Stage 4' AND SPLIT_50_TO_80 = 'Age 80+' AND REGION = 'North of England' UNION ALL SELECT '2016' AS "Year", 'Carcinoma and Other' AS "Tumour Type", 'Stage 4' AS "Stage", 'North of England' AS "Region", 'Female' AS "Sex", 'Age 80+' AS "Age", SUM(statisticofinterest_pancreas) as statistic_of_interest FROM tumour_cohort_linked_pancreas WHERE DIAGNOSISYEAR = '2016' AND MORPH_GROUP = 'Carcinoma and Other' AND STAGE_SPLIT23 = 'Stage 4' AND SPLIT_50_TO_80 = 'Age 80+' AND REGION = 'North of England' AND SEX = 'Female' UNION ALL SELECT '2016' AS "Year", 'Carcinoma and Other' AS "Tumour Type", 'Stage 4' AS "Stage", 'North of England' AS "Region", 'Male' AS "Sex", 'Age 80+' AS "Age", SUM(statisticofinterest_pancreas) as statistic_of_interest FROM tumour_cohort_linked_pancreas WHERE DIAGNOSISYEAR = '2016' AND MORPH_GROUP = 'Carcinoma and Other' AND STAGE_SPLIT23 = 'Stage 4' AND SPLIT_50_TO_80 = 'Age 80+' AND REGION = 'North of England' AND SEX = 'Male' UNION ALL SELECT '2016' AS "Year", 'Carcinoma and Other' AS "Tumour Type", 'Stage 4' AS "Stage", 'South of England' AS "Region", 'All' AS "Sex", 'Age 80+' AS "Age", SUM(statisticofinterest_pancreas) as statistic_of_interest FROM tumour_cohort_linked_pancreas WHERE DIAGNOSISYEAR = '2016' AND MORPH_GROUP = 'Carcinoma and Other' AND STAGE_SPLIT23 = 'Stage 4' AND SPLIT_50_TO_80 = 'Age 80+' AND REGION = 'South of England' UNION ALL SELECT '2016' AS "Year", 'Carcinoma and Other' AS "Tumour Type", 'Stage 4' AS "Stage", 'South of England' AS "Region", 'Female' AS "Sex", 'Age 80+' AS "Age", SUM(statisticofinterest_pancreas) as statistic_of_interest FROM tumour_cohort_linked_pancreas WHERE DIAGNOSISYEAR = '2016' AND MORPH_GROUP = 'Carcinoma and Other' AND STAGE_SPLIT23 = 'Stage 4' AND SPLIT_50_TO_80 = 'Age 80+' AND REGION = 'South of England' AND SEX = 'Female' UNION ALL SELECT '2016' AS "Year", 'Carcinoma and Other' AS "Tumour Type", 'Stage 4' AS "Stage", 'South of England' AS "Region", 'Male' AS "Sex", 'Age 80+' AS "Age", SUM(statisticofinterest_pancreas) as statistic_of_interest FROM tumour_cohort_linked_pancreas WHERE DIAGNOSISYEAR = '2016' AND MORPH_GROUP = 'Carcinoma and Other' AND STAGE_SPLIT23 = 'Stage 4' AND SPLIT_50_TO_80 = 'Age 80+' AND REGION = 'South of England' AND SEX = 'Male' UNION ALL SELECT '2016' AS "Year", 'Carcinoma and Other' AS "Tumour Type", 'Stage unknown' AS "Stage", 'All' AS "Region", 'All' AS "Sex", 'All' AS "Age", SUM(statisticofinterest_pancreas) as statistic_of_interest FROM tumour_cohort_linked_pancreas WHERE DIAGNOSISYEAR = '2016' AND MORPH_GROUP = 'Carcinoma and Other' AND STAGE_SPLIT23 = 'Stage unknown' UNION ALL SELECT '2016' AS "Year", 'Carcinoma and Other' AS "Tumour Type", 'Stage unknown' AS "Stage", 'All' AS "Region", 'All' AS "Sex", 'Age 00-59' AS "Age", SUM(statisticofinterest_pancreas) as statistic_of_interest FROM tumour_cohort_linked_pancreas WHERE DIAGNOSISYEAR = '2016' AND MORPH_GROUP = 'Carcinoma and Other' AND STAGE_SPLIT23 = 'Stage unknown' AND SPLIT_60_TO_80 = 'Age 00-59' UNION ALL SELECT '2016' AS "Year", 'Carcinoma and Other' AS "Tumour Type", 'Stage unknown' AS "Stage", 'All' AS "Region", 'All' AS "Sex", 'Age 60-69' AS "Age", SUM(statisticofinterest_pancreas) as statistic_of_interest FROM tumour_cohort_linked_pancreas WHERE DIAGNOSISYEAR = '2016' AND MORPH_GROUP = 'Carcinoma and Other' AND STAGE_SPLIT23 = 'Stage unknown' AND SPLIT_60_TO_80 = 'Age 60-69' UNION ALL SELECT '2016' AS "Year", 'Carcinoma and Other' AS "Tumour Type", 'Stage unknown' AS "Stage", 'All' AS "Region", 'Female' AS "Sex", 'Age 60-69' AS "Age", SUM(statisticofinterest_pancreas) as statistic_of_interest FROM tumour_cohort_linked_pancreas WHERE DIAGNOSISYEAR = '2016' AND MORPH_GROUP = 'Carcinoma and Other' AND STAGE_SPLIT23 = 'Stage unknown' AND SPLIT_60_TO_80 = 'Age 60-69' AND SEX = 'Female' UNION ALL SELECT '2016' AS "Year", 'Carcinoma and Other' AS "Tumour Type", 'Stage unknown' AS "Stage", 'All' AS "Region", 'Male' AS "Sex", 'Age 60-69' AS "Age", SUM(statisticofinterest_pancreas) as statistic_of_interest FROM tumour_cohort_linked_pancreas WHERE DIAGNOSISYEAR = '2016' AND MORPH_GROUP = 'Carcinoma and Other' AND STAGE_SPLIT23 = 'Stage unknown' AND SPLIT_60_TO_80 = 'Age 60-69' AND SEX = 'Male' UNION ALL SELECT '2016' AS "Year", 'Carcinoma and Other' AS "Tumour Type", 'Stage unknown' AS "Stage", 'All' AS "Region", 'All' AS "Sex", 'Age 70-79' AS "Age", SUM(statisticofinterest_pancreas) as statistic_of_interest FROM tumour_cohort_linked_pancreas WHERE DIAGNOSISYEAR = '2016' AND MORPH_GROUP = 'Carcinoma and Other' AND STAGE_SPLIT23 = 'Stage unknown' AND SPLIT_60_TO_80 = 'Age 70-79' UNION ALL SELECT '2016' AS "Year", 'Carcinoma and Other' AS "Tumour Type", 'Stage unknown' AS "Stage", 'All' AS "Region", 'Female' AS "Sex", 'Age 70-79' AS "Age", SUM(statisticofinterest_pancreas) as statistic_of_interest FROM tumour_cohort_linked_pancreas WHERE DIAGNOSISYEAR = '2016' AND MORPH_GROUP = 'Carcinoma and Other' AND STAGE_SPLIT23 = 'Stage unknown' AND SPLIT_60_TO_80 = 'Age 70-79' AND SEX = 'Female' UNION ALL SELECT '2016' AS "Year", 'Carcinoma and Other' AS "Tumour Type", 'Stage unknown' AS "Stage", 'All' AS "Region", 'Male' AS "Sex", 'Age 70-79' AS "Age", SUM(statisticofinterest_pancreas) as statistic_of_interest FROM tumour_cohort_linked_pancreas WHERE DIAGNOSISYEAR = '2016' AND MORPH_GROUP = 'Carcinoma and Other' AND STAGE_SPLIT23 = 'Stage unknown' AND SPLIT_60_TO_80 = 'Age 70-79' AND SEX = 'Male' UNION ALL SELECT '2016' AS "Year", 'Carcinoma and Other' AS "Tumour Type", 'Stage unknown' AS "Stage", 'All' AS "Region", 'All' AS "Sex", 'Age 80+' AS "Age", SUM(statisticofinterest_pancreas) as statistic_of_interest FROM tumour_cohort_linked_pancreas WHERE DIAGNOSISYEAR = '2016' AND MORPH_GROUP = 'Carcinoma and Other' AND STAGE_SPLIT23 = 'Stage unknown' AND SPLIT_60_TO_80 = 'Age 80+' UNION ALL SELECT '2016' AS "Year", 'Carcinoma and Other' AS "Tumour Type", 'Stage unknown' AS "Stage", 'All' AS "Region", 'Female' AS "Sex", 'Age 80+' AS "Age", SUM(statisticofinterest_pancreas) as statistic_of_interest FROM tumour_cohort_linked_pancreas WHERE DIAGNOSISYEAR = '2016' AND MORPH_GROUP = 'Carcinoma and Other' AND STAGE_SPLIT23 = 'Stage unknown' AND SPLIT_60_TO_80 = 'Age 80+' AND SEX = 'Female' UNION ALL SELECT '2016' AS "Year", 'Carcinoma and Other' AS "Tumour Type", 'Stage unknown' AS "Stage", 'All' AS "Region", 'Male' AS "Sex", 'Age 80+' AS "Age", SUM(statisticofinterest_pancreas) as statistic_of_interest FROM tumour_cohort_linked_pancreas WHERE DIAGNOSISYEAR = '2016' AND MORPH_GROUP = 'Carcinoma and Other' AND STAGE_SPLIT23 = 'Stage unknown' AND SPLIT_60_TO_80 = 'Age 80+' AND SEX = 'Male' UNION ALL SELECT '2016' AS "Year", 'Neuroendocrine' AS "Tumour Type", 'All' AS "Stage", 'All' AS "Region", 'All' AS "Sex", 'All' AS "Age", SUM(statisticofinterest_pancreas) as statistic_of_interest FROM tumour_cohort_linked_pancreas WHERE DIAGNOSISYEAR = '2016' AND MORPH_GROUP = 'Neuroendocrine' UNION ALL SELECT '2016' AS "Year", 'Neuroendocrine' AS "Tumour Type", 'All' AS "Stage", 'All' AS "Region", 'All' AS "Sex", 'Age 00-49' AS "Age", SUM(statisticofinterest_pancreas) as statistic_of_interest FROM tumour_cohort_linked_pancreas WHERE DIAGNOSISYEAR = '2016' AND MORPH_GROUP = 'Neuroendocrine' AND SPLIT_50_TO_70 = 'Age 00-49' UNION ALL SELECT '2016' AS "Year", 'Neuroendocrine' AS "Tumour Type", 'All' AS "Stage", 'All' AS "Region", 'All' AS "Sex", 'Age 50-59' AS "Age", SUM(statisticofinterest_pancreas) as statistic_of_interest FROM tumour_cohort_linked_pancreas WHERE DIAGNOSISYEAR = '2016' AND MORPH_GROUP = 'Neuroendocrine' AND SPLIT_50_TO_70 = 'Age 50-59' UNION ALL SELECT '2016' AS "Year", 'Neuroendocrine' AS "Tumour Type", 'All' AS "Stage", 'All' AS "Region", 'All' AS "Sex", 'Age 60-69' AS "Age", SUM(statisticofinterest_pancreas) as statistic_of_interest FROM tumour_cohort_linked_pancreas WHERE DIAGNOSISYEAR = '2016' AND MORPH_GROUP = 'Neuroendocrine' AND SPLIT_50_TO_70 = 'Age 60-69' UNION ALL SELECT '2016' AS "Year", 'Neuroendocrine' AS "Tumour Type", 'All' AS "Stage", 'All' AS "Region", 'All' AS "Sex", 'Age 70+' AS "Age", SUM(statisticofinterest_pancreas) as statistic_of_interest FROM tumour_cohort_linked_pancreas WHERE DIAGNOSISYEAR = '2016' AND MORPH_GROUP = 'Neuroendocrine' AND SPLIT_50_TO_70 = 'Age 70+' UNION ALL SELECT '2017' AS "Year", 'All' AS "Tumour Type", 'All' AS "Stage", 'All' AS "Region", 'All' AS "Sex", 'All' AS "Age", SUM(statisticofinterest_pancreas) as statistic_of_interest FROM tumour_cohort_linked_pancreas WHERE DIAGNOSISYEAR = '2017' UNION ALL SELECT '2017' AS "Year", 'Carcinoma and Other' AS "Tumour Type", 'All' AS "Stage", 'All' AS "Region", 'All' AS "Sex", 'All' AS "Age", SUM(statisticofinterest_pancreas) as statistic_of_interest FROM tumour_cohort_linked_pancreas WHERE DIAGNOSISYEAR = '2017' AND MORPH_GROUP = 'Carcinoma and Other' UNION ALL SELECT '2017' AS "Year", 'Carcinoma and Other' AS "Tumour Type", 'Stage 1-2' AS "Stage", 'All' AS "Region", 'All' AS "Sex", 'All' AS "Age", SUM(statisticofinterest_pancreas) as statistic_of_interest FROM tumour_cohort_linked_pancreas WHERE DIAGNOSISYEAR = '2017' AND MORPH_GROUP = 'Carcinoma and Other' AND STAGE_SPLIT23 = 'Stage 1-2' UNION ALL SELECT '2017' AS "Year", 'Carcinoma and Other' AS "Tumour Type", 'Stage 1-2' AS "Stage", 'All' AS "Region", 'All' AS "Sex", 'Age 00-59' AS "Age", SUM(statisticofinterest_pancreas) as statistic_of_interest FROM tumour_cohort_linked_pancreas WHERE DIAGNOSISYEAR = '2017' AND MORPH_GROUP = 'Carcinoma and Other' AND STAGE_SPLIT23 = 'Stage 1-2' AND SPLIT_60_TO_80 = 'Age 00-59' UNION ALL SELECT '2017' AS "Year", 'Carcinoma and Other' AS "Tumour Type", 'Stage 1-2' AS "Stage", 'All' AS "Region", 'All' AS "Sex", 'Age 60-69' AS "Age", SUM(statisticofinterest_pancreas) as statistic_of_interest FROM tumour_cohort_linked_pancreas WHERE DIAGNOSISYEAR = '2017' AND MORPH_GROUP = 'Carcinoma and Other' AND STAGE_SPLIT23 = 'Stage 1-2' AND SPLIT_60_TO_80 = 'Age 60-69' UNION ALL SELECT '2017' AS "Year", 'Carcinoma and Other' AS "Tumour Type", 'Stage 1-2' AS "Stage", 'All' AS "Region", 'Female' AS "Sex", 'Age 60-69' AS "Age", SUM(statisticofinterest_pancreas) as statistic_of_interest FROM tumour_cohort_linked_pancreas WHERE DIAGNOSISYEAR = '2017' AND MORPH_GROUP = 'Carcinoma and Other' AND STAGE_SPLIT23 = 'Stage 1-2' AND SPLIT_60_TO_80 = 'Age 60-69' AND SEX = 'Female' UNION ALL SELECT '2017' AS "Year", 'Carcinoma and Other' AS "Tumour Type", 'Stage 1-2' AS "Stage", 'All' AS "Region", 'Male' AS "Sex", 'Age 60-69' AS "Age", SUM(statisticofinterest_pancreas) as statistic_of_interest FROM tumour_cohort_linked_pancreas WHERE DIAGNOSISYEAR = '2017' AND MORPH_GROUP = 'Carcinoma and Other' AND STAGE_SPLIT23 = 'Stage 1-2' AND SPLIT_60_TO_80 = 'Age 60-69' AND SEX = 'Male' UNION ALL SELECT '2017' AS "Year", 'Carcinoma and Other' AS "Tumour Type", 'Stage 1-2' AS "Stage", 'All' AS "Region", 'All' AS "Sex", 'Age 70-79' AS "Age", SUM(statisticofinterest_pancreas) as statistic_of_interest FROM tumour_cohort_linked_pancreas WHERE DIAGNOSISYEAR = '2017' AND MORPH_GROUP = 'Carcinoma and Other' AND STAGE_SPLIT23 = 'Stage 1-2' AND SPLIT_60_TO_80 = 'Age 70-79' UNION ALL SELECT '2017' AS "Year", 'Carcinoma and Other' AS "Tumour Type", 'Stage 1-2' AS "Stage", 'All' AS "Region", 'Female' AS "Sex", 'Age 70-79' AS "Age", SUM(statisticofinterest_pancreas) as statistic_of_interest FROM tumour_cohort_linked_pancreas WHERE DIAGNOSISYEAR = '2017' AND MORPH_GROUP = 'Carcinoma and Other' AND STAGE_SPLIT23 = 'Stage 1-2' AND SPLIT_60_TO_80 = 'Age 70-79' AND SEX = 'Female' UNION ALL SELECT '2017' AS "Year", 'Carcinoma and Other' AS "Tumour Type", 'Stage 1-2' AS "Stage", 'All' AS "Region", 'Male' AS "Sex", 'Age 70-79' AS "Age", SUM(statisticofinterest_pancreas) as statistic_of_interest FROM tumour_cohort_linked_pancreas WHERE DIAGNOSISYEAR = '2017' AND MORPH_GROUP = 'Carcinoma and Other' AND STAGE_SPLIT23 = 'Stage 1-2' AND SPLIT_60_TO_80 = 'Age 70-79' AND SEX = 'Male' UNION ALL SELECT '2017' AS "Year", 'Carcinoma and Other' AS "Tumour Type", 'Stage 1-2' AS "Stage", 'All' AS "Region", 'All' AS "Sex", 'Age 80+' AS "Age", SUM(statisticofinterest_pancreas) as statistic_of_interest FROM tumour_cohort_linked_pancreas WHERE DIAGNOSISYEAR = '2017' AND MORPH_GROUP = 'Carcinoma and Other' AND STAGE_SPLIT23 = 'Stage 1-2' AND SPLIT_60_TO_80 = 'Age 80+' UNION ALL SELECT '2017' AS "Year", 'Carcinoma and Other' AS "Tumour Type", 'Stage 1-2' AS "Stage", 'All' AS "Region", 'Female' AS "Sex", 'Age 80+' AS "Age", SUM(statisticofinterest_pancreas) as statistic_of_interest FROM tumour_cohort_linked_pancreas WHERE DIAGNOSISYEAR = '2017' AND MORPH_GROUP = 'Carcinoma and Other' AND STAGE_SPLIT23 = 'Stage 1-2' AND SPLIT_60_TO_80 = 'Age 80+' AND SEX = 'Female' UNION ALL SELECT '2017' AS "Year", 'Carcinoma and Other' AS "Tumour Type", 'Stage 1-2' AS "Stage", 'All' AS "Region", 'Male' AS "Sex", 'Age 80+' AS "Age", SUM(statisticofinterest_pancreas) as statistic_of_interest FROM tumour_cohort_linked_pancreas WHERE DIAGNOSISYEAR = '2017' AND MORPH_GROUP = 'Carcinoma and Other' AND STAGE_SPLIT23 = 'Stage 1-2' AND SPLIT_60_TO_80 = 'Age 80+' AND SEX = 'Male' UNION ALL SELECT '2017' AS "Year", 'Carcinoma and Other' AS "Tumour Type", 'Stage 3' AS "Stage", 'All' AS "Region", 'All' AS "Sex", 'All' AS "Age", SUM(statisticofinterest_pancreas) as statistic_of_interest FROM tumour_cohort_linked_pancreas WHERE DIAGNOSISYEAR = '2017' AND MORPH_GROUP = 'Carcinoma and Other' AND STAGE_SPLIT23 = 'Stage 3' UNION ALL SELECT '2017' AS "Year", 'Carcinoma and Other' AS "Tumour Type", 'Stage 3' AS "Stage", 'All' AS "Region", 'All' AS "Sex", 'Age 00-59' AS "Age", SUM(statisticofinterest_pancreas) as statistic_of_interest FROM tumour_cohort_linked_pancreas WHERE DIAGNOSISYEAR = '2017' AND MORPH_GROUP = 'Carcinoma and Other' AND STAGE_SPLIT23 = 'Stage 3' AND SPLIT_60_70 = 'Age 00-59' UNION ALL SELECT '2017' AS "Year", 'Carcinoma and Other' AS "Tumour Type", 'Stage 3' AS "Stage", 'All' AS "Region", 'All' AS "Sex", 'Age 60-69' AS "Age", SUM(statisticofinterest_pancreas) as statistic_of_interest FROM tumour_cohort_linked_pancreas WHERE DIAGNOSISYEAR = '2017' AND MORPH_GROUP = 'Carcinoma and Other' AND STAGE_SPLIT23 = 'Stage 3' AND SPLIT_60_70 = 'Age 60-69' UNION ALL SELECT '2017' AS "Year", 'Carcinoma and Other' AS "Tumour Type", 'Stage 3' AS "Stage", 'All' AS "Region", 'All' AS "Sex", 'Age 70+' AS "Age", SUM(statisticofinterest_pancreas) as statistic_of_interest FROM tumour_cohort_linked_pancreas WHERE DIAGNOSISYEAR = '2017' AND MORPH_GROUP = 'Carcinoma and Other' AND STAGE_SPLIT23 = 'Stage 3' AND SPLIT_60_70 = 'Age 70+' UNION ALL SELECT '2017' AS "Year", 'Carcinoma and Other' AS "Tumour Type", 'Stage 3' AS "Stage", 'All' AS "Region", 'Female' AS "Sex", 'Age 70+' AS "Age", SUM(statisticofinterest_pancreas) as statistic_of_interest FROM tumour_cohort_linked_pancreas WHERE DIAGNOSISYEAR = '2017' AND MORPH_GROUP = 'Carcinoma and Other' AND STAGE_SPLIT23 = 'Stage 3' AND SPLIT_60_70 = 'Age 70+' AND SEX = 'Female' UNION ALL SELECT '2017' AS "Year", 'Carcinoma and Other' AS "Tumour Type", 'Stage 3' AS "Stage", 'All' AS "Region", 'Male' AS "Sex", 'Age 70+' AS "Age", SUM(statisticofinterest_pancreas) as statistic_of_interest FROM tumour_cohort_linked_pancreas WHERE DIAGNOSISYEAR = '2017' AND MORPH_GROUP = 'Carcinoma and Other' AND STAGE_SPLIT23 = 'Stage 3' AND SPLIT_60_70 = 'Age 70+' AND SEX = 'Male' UNION ALL SELECT '2017' AS "Year", 'Carcinoma and Other' AS "Tumour Type", 'Stage 4' AS "Stage", 'All' AS "Region", 'All' AS "Sex", 'All' AS "Age", SUM(statisticofinterest_pancreas) as statistic_of_interest FROM tumour_cohort_linked_pancreas WHERE DIAGNOSISYEAR = '2017' AND MORPH_GROUP = 'Carcinoma and Other' AND STAGE_SPLIT23 = 'Stage 4' UNION ALL SELECT '2017' AS "Year", 'Carcinoma and Other' AS "Tumour Type", 'Stage 4' AS "Stage", 'All' AS "Region", 'All' AS "Sex", 'Age 00-49' AS "Age", SUM(statisticofinterest_pancreas) as statistic_of_interest FROM tumour_cohort_linked_pancreas WHERE DIAGNOSISYEAR = '2017' AND MORPH_GROUP = 'Carcinoma and Other' AND STAGE_SPLIT23 = 'Stage 4' AND SPLIT_50_TO_80 = 'Age 00-49' UNION ALL SELECT '2017' AS "Year", 'Carcinoma and Other' AS "Tumour Type", 'Stage 4' AS "Stage", 'All' AS "Region", 'All' AS "Sex", 'Age 50-59' AS "Age", SUM(statisticofinterest_pancreas) as statistic_of_interest FROM tumour_cohort_linked_pancreas WHERE DIAGNOSISYEAR = '2017' AND MORPH_GROUP = 'Carcinoma and Other' AND STAGE_SPLIT23 = 'Stage 4' AND SPLIT_50_TO_80 = 'Age 50-59' UNION ALL SELECT '2017' AS "Year", 'Carcinoma and Other' AS "Tumour Type", 'Stage 4' AS "Stage", 'All' AS "Region", 'All' AS "Sex", 'Age 60-69' AS "Age", SUM(statisticofinterest_pancreas) as statistic_of_interest FROM tumour_cohort_linked_pancreas WHERE DIAGNOSISYEAR = '2017' AND MORPH_GROUP = 'Carcinoma and Other' AND STAGE_SPLIT23 = 'Stage 4' AND SPLIT_50_TO_80 = 'Age 60-69' UNION ALL SELECT '2017' AS "Year", 'Carcinoma and Other' AS "Tumour Type", 'Stage 4' AS "Stage", 'London' AS "Region", 'All' AS "Sex", 'Age 60-69' AS "Age", SUM(statisticofinterest_pancreas) as statistic_of_interest FROM tumour_cohort_linked_pancreas WHERE DIAGNOSISYEAR = '2017' AND MORPH_GROUP = 'Carcinoma and Other' AND STAGE_SPLIT23 = 'Stage 4' AND SPLIT_50_TO_80 = 'Age 60-69' AND REGION = 'London' UNION ALL SELECT '2017' AS "Year", 'Carcinoma and Other' AS "Tumour Type", 'Stage 4' AS "Stage", 'Midlands and East of England' AS "Region", 'All' AS "Sex", 'Age 60-69' AS "Age", SUM(statisticofinterest_pancreas) as statistic_of_interest FROM tumour_cohort_linked_pancreas WHERE DIAGNOSISYEAR = '2017' AND MORPH_GROUP = 'Carcinoma and Other' AND STAGE_SPLIT23 = 'Stage 4' AND SPLIT_50_TO_80 = 'Age 60-69' AND REGION = 'Midlands and East of England' UNION ALL SELECT '2017' AS "Year", 'Carcinoma and Other' AS "Tumour Type", 'Stage 4' AS "Stage", 'Midlands and East of England' AS "Region", 'Female' AS "Sex", 'Age 60-69' AS "Age", SUM(statisticofinterest_pancreas) as statistic_of_interest FROM tumour_cohort_linked_pancreas WHERE DIAGNOSISYEAR = '2017' AND MORPH_GROUP = 'Carcinoma and Other' AND STAGE_SPLIT23 = 'Stage 4' AND SPLIT_50_TO_80 = 'Age 60-69' AND REGION = 'Midlands and East of England' AND SEX = 'Female' UNION ALL SELECT '2017' AS "Year", 'Carcinoma and Other' AS "Tumour Type", 'Stage 4' AS "Stage", 'Midlands and East of England' AS "Region", 'Male' AS "Sex", 'Age 60-69' AS "Age", SUM(statisticofinterest_pancreas) as statistic_of_interest FROM tumour_cohort_linked_pancreas WHERE DIAGNOSISYEAR = '2017' AND MORPH_GROUP = 'Carcinoma and Other' AND STAGE_SPLIT23 = 'Stage 4' AND SPLIT_50_TO_80 = 'Age 60-69' AND REGION = 'Midlands and East of England' AND SEX = 'Male' UNION ALL SELECT '2017' AS "Year", 'Carcinoma and Other' AS "Tumour Type", 'Stage 4' AS "Stage", 'North of England' AS "Region", 'All' AS "Sex", 'Age 60-69' AS "Age", SUM(statisticofinterest_pancreas) as statistic_of_interest FROM tumour_cohort_linked_pancreas WHERE DIAGNOSISYEAR = '2017' AND MORPH_GROUP = 'Carcinoma and Other' AND STAGE_SPLIT23 = 'Stage 4' AND SPLIT_50_TO_80 = 'Age 60-69' AND REGION = 'North of England' UNION ALL SELECT '2017' AS "Year", 'Carcinoma and Other' AS "Tumour Type", 'Stage 4' AS "Stage", 'North of England' AS "Region", 'Female' AS "Sex", 'Age 60-69' AS "Age", SUM(statisticofinterest_pancreas) as statistic_of_interest FROM tumour_cohort_linked_pancreas WHERE DIAGNOSISYEAR = '2017' AND MORPH_GROUP = 'Carcinoma and Other' AND STAGE_SPLIT23 = 'Stage 4' AND SPLIT_50_TO_80 = 'Age 60-69' AND REGION = 'North of England' AND SEX = 'Female' UNION ALL SELECT '2017' AS "Year", 'Carcinoma and Other' AS "Tumour Type", 'Stage 4' AS "Stage", 'North of England' AS "Region", 'Male' AS "Sex", 'Age 60-69' AS "Age", SUM(statisticofinterest_pancreas) as statistic_of_interest FROM tumour_cohort_linked_pancreas WHERE DIAGNOSISYEAR = '2017' AND MORPH_GROUP = 'Carcinoma and Other' AND STAGE_SPLIT23 = 'Stage 4' AND SPLIT_50_TO_80 = 'Age 60-69' AND REGION = 'North of England' AND SEX = 'Male' UNION ALL SELECT '2017' AS "Year", 'Carcinoma and Other' AS "Tumour Type", 'Stage 4' AS "Stage", 'South of England' AS "Region", 'All' AS "Sex", 'Age 60-69' AS "Age", SUM(statisticofinterest_pancreas) as statistic_of_interest FROM tumour_cohort_linked_pancreas WHERE DIAGNOSISYEAR = '2017' AND MORPH_GROUP = 'Carcinoma and Other' AND STAGE_SPLIT23 = 'Stage 4' AND SPLIT_50_TO_80 = 'Age 60-69' AND REGION = 'South of England' UNION ALL SELECT '2017' AS "Year", 'Carcinoma and Other' AS "Tumour Type", 'Stage 4' AS "Stage", 'South of England' AS "Region", 'Female' AS "Sex", 'Age 60-69' AS "Age", SUM(statisticofinterest_pancreas) as statistic_of_interest FROM tumour_cohort_linked_pancreas WHERE DIAGNOSISYEAR = '2017' AND MORPH_GROUP = 'Carcinoma and Other' AND STAGE_SPLIT23 = 'Stage 4' AND SPLIT_50_TO_80 = 'Age 60-69' AND REGION = 'South of England' AND SEX = 'Female' UNION ALL SELECT '2017' AS "Year", 'Carcinoma and Other' AS "Tumour Type", 'Stage 4' AS "Stage", 'South of England' AS "Region", 'Male' AS "Sex", 'Age 60-69' AS "Age", SUM(statisticofinterest_pancreas) as statistic_of_interest FROM tumour_cohort_linked_pancreas WHERE DIAGNOSISYEAR = '2017' AND MORPH_GROUP = 'Carcinoma and Other' AND STAGE_SPLIT23 = 'Stage 4' AND SPLIT_50_TO_80 = 'Age 60-69' AND REGION = 'South of England' AND SEX = 'Male' UNION ALL SELECT '2017' AS "Year", 'Carcinoma and Other' AS "Tumour Type", 'Stage 4' AS "Stage", 'All' AS "Region", 'All' AS "Sex", 'Age 70-79' AS "Age", SUM(statisticofinterest_pancreas) as statistic_of_interest FROM tumour_cohort_linked_pancreas WHERE DIAGNOSISYEAR = '2017' AND MORPH_GROUP = 'Carcinoma and Other' AND STAGE_SPLIT23 = 'Stage 4' AND SPLIT_50_TO_80 = 'Age 70-79' UNION ALL SELECT '2017' AS "Year", 'Carcinoma and Other' AS "Tumour Type", 'Stage 4' AS "Stage", 'London' AS "Region", 'All' AS "Sex", 'Age 70-79' AS "Age", SUM(statisticofinterest_pancreas) as statistic_of_interest FROM tumour_cohort_linked_pancreas WHERE DIAGNOSISYEAR = '2017' AND MORPH_GROUP = 'Carcinoma and Other' AND STAGE_SPLIT23 = 'Stage 4' AND SPLIT_50_TO_80 = 'Age 70-79' AND REGION = 'London' UNION ALL SELECT '2017' AS "Year", 'Carcinoma and Other' AS "Tumour Type", 'Stage 4' AS "Stage", 'Midlands and East of England' AS "Region", 'All' AS "Sex", 'Age 70-79' AS "Age", SUM(statisticofinterest_pancreas) as statistic_of_interest FROM tumour_cohort_linked_pancreas WHERE DIAGNOSISYEAR = '2017' AND MORPH_GROUP = 'Carcinoma and Other' AND STAGE_SPLIT23 = 'Stage 4' AND SPLIT_50_TO_80 = 'Age 70-79' AND REGION = 'Midlands and East of England' UNION ALL SELECT '2017' AS "Year", 'Carcinoma and Other' AS "Tumour Type", 'Stage 4' AS "Stage", 'Midlands and East of England' AS "Region", 'Female' AS "Sex", 'Age 70-79' AS "Age", SUM(statisticofinterest_pancreas) as statistic_of_interest FROM tumour_cohort_linked_pancreas WHERE DIAGNOSISYEAR = '2017' AND MORPH_GROUP = 'Carcinoma and Other' AND STAGE_SPLIT23 = 'Stage 4' AND SPLIT_50_TO_80 = 'Age 70-79' AND REGION = 'Midlands and East of England' AND SEX = 'Female' UNION ALL SELECT '2017' AS "Year", 'Carcinoma and Other' AS "Tumour Type", 'Stage 4' AS "Stage", 'Midlands and East of England' AS "Region", 'Male' AS "Sex", 'Age 70-79' AS "Age", SUM(statisticofinterest_pancreas) as statistic_of_interest FROM tumour_cohort_linked_pancreas WHERE DIAGNOSISYEAR = '2017' AND MORPH_GROUP = 'Carcinoma and Other' AND STAGE_SPLIT23 = 'Stage 4' AND SPLIT_50_TO_80 = 'Age 70-79' AND REGION = 'Midlands and East of England' AND SEX = 'Male' UNION ALL SELECT '2017' AS "Year", 'Carcinoma and Other' AS "Tumour Type", 'Stage 4' AS "Stage", 'North of England' AS "Region", 'All' AS "Sex", 'Age 70-79' AS "Age", SUM(statisticofinterest_pancreas) as statistic_of_interest FROM tumour_cohort_linked_pancreas WHERE DIAGNOSISYEAR = '2017' AND MORPH_GROUP = 'Carcinoma and Other' AND STAGE_SPLIT23 = 'Stage 4' AND SPLIT_50_TO_80 = 'Age 70-79' AND REGION = 'North of England' UNION ALL SELECT '2017' AS "Year", 'Carcinoma and Other' AS "Tumour Type", 'Stage 4' AS "Stage", 'North of England' AS "Region", 'Female' AS "Sex", 'Age 70-79' AS "Age", SUM(statisticofinterest_pancreas) as statistic_of_interest FROM tumour_cohort_linked_pancreas WHERE DIAGNOSISYEAR = '2017' AND MORPH_GROUP = 'Carcinoma and Other' AND STAGE_SPLIT23 = 'Stage 4' AND SPLIT_50_TO_80 = 'Age 70-79' AND REGION = 'North of England' AND SEX = 'Female' UNION ALL SELECT '2017' AS "Year", 'Carcinoma and Other' AS "Tumour Type", 'Stage 4' AS "Stage", 'North of England' AS "Region", 'Male' AS "Sex", 'Age 70-79' AS "Age", SUM(statisticofinterest_pancreas) as statistic_of_interest FROM tumour_cohort_linked_pancreas WHERE DIAGNOSISYEAR = '2017' AND MORPH_GROUP = 'Carcinoma and Other' AND STAGE_SPLIT23 = 'Stage 4' AND SPLIT_50_TO_80 = 'Age 70-79' AND REGION = 'North of England' AND SEX = 'Male' UNION ALL SELECT '2017' AS "Year", 'Carcinoma and Other' AS "Tumour Type", 'Stage 4' AS "Stage", 'South of England' AS "Region", 'All' AS "Sex", 'Age 70-79' AS "Age", SUM(statisticofinterest_pancreas) as statistic_of_interest FROM tumour_cohort_linked_pancreas WHERE DIAGNOSISYEAR = '2017' AND MORPH_GROUP = 'Carcinoma and Other' AND STAGE_SPLIT23 = 'Stage 4' AND SPLIT_50_TO_80 = 'Age 70-79' AND REGION = 'South of England' UNION ALL SELECT '2017' AS "Year", 'Carcinoma and Other' AS "Tumour Type", 'Stage 4' AS "Stage", 'South of England' AS "Region", 'Female' AS "Sex", 'Age 70-79' AS "Age", SUM(statisticofinterest_pancreas) as statistic_of_interest FROM tumour_cohort_linked_pancreas WHERE DIAGNOSISYEAR = '2017' AND MORPH_GROUP = 'Carcinoma and Other' AND STAGE_SPLIT23 = 'Stage 4' AND SPLIT_50_TO_80 = 'Age 70-79' AND REGION = 'South of England' AND SEX = 'Female' UNION ALL SELECT '2017' AS "Year", 'Carcinoma and Other' AS "Tumour Type", 'Stage 4' AS "Stage", 'South of England' AS "Region", 'Male' AS "Sex", 'Age 70-79' AS "Age", SUM(statisticofinterest_pancreas) as statistic_of_interest FROM tumour_cohort_linked_pancreas WHERE DIAGNOSISYEAR = '2017' AND MORPH_GROUP = 'Carcinoma and Other' AND STAGE_SPLIT23 = 'Stage 4' AND SPLIT_50_TO_80 = 'Age 70-79' AND REGION = 'South of England' AND SEX = 'Male' UNION ALL SELECT '2017' AS "Year", 'Carcinoma and Other' AS "Tumour Type", 'Stage 4' AS "Stage", 'All' AS "Region", 'All' AS "Sex", 'Age 80+' AS "Age", SUM(statisticofinterest_pancreas) as statistic_of_interest FROM tumour_cohort_linked_pancreas WHERE DIAGNOSISYEAR = '2017' AND MORPH_GROUP = 'Carcinoma and Other' AND STAGE_SPLIT23 = 'Stage 4' AND SPLIT_50_TO_80 = 'Age 80+' UNION ALL SELECT '2017' AS "Year", 'Carcinoma and Other' AS "Tumour Type", 'Stage 4' AS "Stage", 'London' AS "Region", 'All' AS "Sex", 'Age 80+' AS "Age", SUM(statisticofinterest_pancreas) as statistic_of_interest FROM tumour_cohort_linked_pancreas WHERE DIAGNOSISYEAR = '2017' AND MORPH_GROUP = 'Carcinoma and Other' AND STAGE_SPLIT23 = 'Stage 4' AND SPLIT_50_TO_80 = 'Age 80+' AND REGION = 'London' UNION ALL SELECT '2017' AS "Year", 'Carcinoma and Other' AS "Tumour Type", 'Stage 4' AS "Stage", 'Midlands and East of England' AS "Region", 'All' AS "Sex", 'Age 80+' AS "Age", SUM(statisticofinterest_pancreas) as statistic_of_interest FROM tumour_cohort_linked_pancreas WHERE DIAGNOSISYEAR = '2017' AND MORPH_GROUP = 'Carcinoma and Other' AND STAGE_SPLIT23 = 'Stage 4' AND SPLIT_50_TO_80 = 'Age 80+' AND REGION = 'Midlands and East of England' UNION ALL SELECT '2017' AS "Year", 'Carcinoma and Other' AS "Tumour Type", 'Stage 4' AS "Stage", 'Midlands and East of England' AS "Region", 'Female' AS "Sex", 'Age 80+' AS "Age", SUM(statisticofinterest_pancreas) as statistic_of_interest FROM tumour_cohort_linked_pancreas WHERE DIAGNOSISYEAR = '2017' AND MORPH_GROUP = 'Carcinoma and Other' AND STAGE_SPLIT23 = 'Stage 4' AND SPLIT_50_TO_80 = 'Age 80+' AND REGION = 'Midlands and East of England' AND SEX = 'Female' UNION ALL SELECT '2017' AS "Year", 'Carcinoma and Other' AS "Tumour Type", 'Stage 4' AS "Stage", 'Midlands and East of England' AS "Region", 'Male' AS "Sex", 'Age 80+' AS "Age", SUM(statisticofinterest_pancreas) as statistic_of_interest FROM tumour_cohort_linked_pancreas WHERE DIAGNOSISYEAR = '2017' AND MORPH_GROUP = 'Carcinoma and Other' AND STAGE_SPLIT23 = 'Stage 4' AND SPLIT_50_TO_80 = 'Age 80+' AND REGION = 'Midlands and East of England' AND SEX = 'Male' UNION ALL SELECT '2017' AS "Year", 'Carcinoma and Other' AS "Tumour Type", 'Stage 4' AS "Stage", 'North of England' AS "Region", 'All' AS "Sex", 'Age 80+' AS "Age", SUM(statisticofinterest_pancreas) as statistic_of_interest FROM tumour_cohort_linked_pancreas WHERE DIAGNOSISYEAR = '2017' AND MORPH_GROUP = 'Carcinoma and Other' AND STAGE_SPLIT23 = 'Stage 4' AND SPLIT_50_TO_80 = 'Age 80+' AND REGION = 'North of England' UNION ALL SELECT '2017' AS "Year", 'Carcinoma and Other' AS "Tumour Type", 'Stage 4' AS "Stage", 'North of England' AS "Region", 'Female' AS "Sex", 'Age 80+' AS "Age", SUM(statisticofinterest_pancreas) as statistic_of_interest FROM tumour_cohort_linked_pancreas WHERE DIAGNOSISYEAR = '2017' AND MORPH_GROUP = 'Carcinoma and Other' AND STAGE_SPLIT23 = 'Stage 4' AND SPLIT_50_TO_80 = 'Age 80+' AND REGION = 'North of England' AND SEX = 'Female' UNION ALL SELECT '2017' AS "Year", 'Carcinoma and Other' AS "Tumour Type", 'Stage 4' AS "Stage", 'North of England' AS "Region", 'Male' AS "Sex", 'Age 80+' AS "Age", SUM(statisticofinterest_pancreas) as statistic_of_interest FROM tumour_cohort_linked_pancreas WHERE DIAGNOSISYEAR = '2017' AND MORPH_GROUP = 'Carcinoma and Other' AND STAGE_SPLIT23 = 'Stage 4' AND SPLIT_50_TO_80 = 'Age 80+' AND REGION = 'North of England' AND SEX = 'Male' UNION ALL SELECT '2017' AS "Year", 'Carcinoma and Other' AS "Tumour Type", 'Stage 4' AS "Stage", 'South of England' AS "Region", 'All' AS "Sex", 'Age 80+' AS "Age", SUM(statisticofinterest_pancreas) as statistic_of_interest FROM tumour_cohort_linked_pancreas WHERE DIAGNOSISYEAR = '2017' AND MORPH_GROUP = 'Carcinoma and Other' AND STAGE_SPLIT23 = 'Stage 4' AND SPLIT_50_TO_80 = 'Age 80+' AND REGION = 'South of England' UNION ALL SELECT '2017' AS "Year", 'Carcinoma and Other' AS "Tumour Type", 'Stage 4' AS "Stage", 'South of England' AS "Region", 'Female' AS "Sex", 'Age 80+' AS "Age", SUM(statisticofinterest_pancreas) as statistic_of_interest FROM tumour_cohort_linked_pancreas WHERE DIAGNOSISYEAR = '2017' AND MORPH_GROUP = 'Carcinoma and Other' AND STAGE_SPLIT23 = 'Stage 4' AND SPLIT_50_TO_80 = 'Age 80+' AND REGION = 'South of England' AND SEX = 'Female' UNION ALL SELECT '2017' AS "Year", 'Carcinoma and Other' AS "Tumour Type", 'Stage 4' AS "Stage", 'South of England' AS "Region", 'Male' AS "Sex", 'Age 80+' AS "Age", SUM(statisticofinterest_pancreas) as statistic_of_interest FROM tumour_cohort_linked_pancreas WHERE DIAGNOSISYEAR = '2017' AND MORPH_GROUP = 'Carcinoma and Other' AND STAGE_SPLIT23 = 'Stage 4' AND SPLIT_50_TO_80 = 'Age 80+' AND REGION = 'South of England' AND SEX = 'Male' UNION ALL SELECT '2017' AS "Year", 'Carcinoma and Other' AS "Tumour Type", 'Stage unknown' AS "Stage", 'All' AS "Region", 'All' AS "Sex", 'All' AS "Age", SUM(statisticofinterest_pancreas) as statistic_of_interest FROM tumour_cohort_linked_pancreas WHERE DIAGNOSISYEAR = '2017' AND MORPH_GROUP = 'Carcinoma and Other' AND STAGE_SPLIT23 = 'Stage unknown' UNION ALL SELECT '2017' AS "Year", 'Carcinoma and Other' AS "Tumour Type", 'Stage unknown' AS "Stage", 'All' AS "Region", 'All' AS "Sex", 'Age 00-59' AS "Age", SUM(statisticofinterest_pancreas) as statistic_of_interest FROM tumour_cohort_linked_pancreas WHERE DIAGNOSISYEAR = '2017' AND MORPH_GROUP = 'Carcinoma and Other' AND STAGE_SPLIT23 = 'Stage unknown' AND SPLIT_60_TO_80 = 'Age 00-59' UNION ALL SELECT '2017' AS "Year", 'Carcinoma and Other' AS "Tumour Type", 'Stage unknown' AS "Stage", 'All' AS "Region", 'All' AS "Sex", 'Age 60-69' AS "Age", SUM(statisticofinterest_pancreas) as statistic_of_interest FROM tumour_cohort_linked_pancreas WHERE DIAGNOSISYEAR = '2017' AND MORPH_GROUP = 'Carcinoma and Other' AND STAGE_SPLIT23 = 'Stage unknown' AND SPLIT_60_TO_80 = 'Age 60-69' UNION ALL SELECT '2017' AS "Year", 'Carcinoma and Other' AS "Tumour Type", 'Stage unknown' AS "Stage", 'All' AS "Region", 'Female' AS "Sex", 'Age 60-69' AS "Age", SUM(statisticofinterest_pancreas) as statistic_of_interest FROM tumour_cohort_linked_pancreas WHERE DIAGNOSISYEAR = '2017' AND MORPH_GROUP = 'Carcinoma and Other' AND STAGE_SPLIT23 = 'Stage unknown' AND SPLIT_60_TO_80 = 'Age 60-69' AND SEX = 'Female' UNION ALL SELECT '2017' AS "Year", 'Carcinoma and Other' AS "Tumour Type", 'Stage unknown' AS "Stage", 'All' AS "Region", 'Male' AS "Sex", 'Age 60-69' AS "Age", SUM(statisticofinterest_pancreas) as statistic_of_interest FROM tumour_cohort_linked_pancreas WHERE DIAGNOSISYEAR = '2017' AND MORPH_GROUP = 'Carcinoma and Other' AND STAGE_SPLIT23 = 'Stage unknown' AND SPLIT_60_TO_80 = 'Age 60-69' AND SEX = 'Male' UNION ALL SELECT '2017' AS "Year", 'Carcinoma and Other' AS "Tumour Type", 'Stage unknown' AS "Stage", 'All' AS "Region", 'All' AS "Sex", 'Age 70-79' AS "Age", SUM(statisticofinterest_pancreas) as statistic_of_interest FROM tumour_cohort_linked_pancreas WHERE DIAGNOSISYEAR = '2017' AND MORPH_GROUP = 'Carcinoma and Other' AND STAGE_SPLIT23 = 'Stage unknown' AND SPLIT_60_TO_80 = 'Age 70-79' UNION ALL SELECT '2017' AS "Year", 'Carcinoma and Other' AS "Tumour Type", 'Stage unknown' AS "Stage", 'All' AS "Region", 'Female' AS "Sex", 'Age 70-79' AS "Age", SUM(statisticofinterest_pancreas) as statistic_of_interest FROM tumour_cohort_linked_pancreas WHERE DIAGNOSISYEAR = '2017' AND MORPH_GROUP = 'Carcinoma and Other' AND STAGE_SPLIT23 = 'Stage unknown' AND SPLIT_60_TO_80 = 'Age 70-79' AND SEX = 'Female' UNION ALL SELECT '2017' AS "Year", 'Carcinoma and Other' AS "Tumour Type", 'Stage unknown' AS "Stage", 'All' AS "Region", 'Male' AS "Sex", 'Age 70-79' AS "Age", SUM(statisticofinterest_pancreas) as statistic_of_interest FROM tumour_cohort_linked_pancreas WHERE DIAGNOSISYEAR = '2017' AND MORPH_GROUP = 'Carcinoma and Other' AND STAGE_SPLIT23 = 'Stage unknown' AND SPLIT_60_TO_80 = 'Age 70-79' AND SEX = 'Male' UNION ALL SELECT '2017' AS "Year", 'Carcinoma and Other' AS "Tumour Type", 'Stage unknown' AS "Stage", 'All' AS "Region", 'All' AS "Sex", 'Age 80+' AS "Age", SUM(statisticofinterest_pancreas) as statistic_of_interest FROM tumour_cohort_linked_pancreas WHERE DIAGNOSISYEAR = '2017' AND MORPH_GROUP = 'Carcinoma and Other' AND STAGE_SPLIT23 = 'Stage unknown' AND SPLIT_60_TO_80 = 'Age 80+' UNION ALL SELECT '2017' AS "Year", 'Carcinoma and Other' AS "Tumour Type", 'Stage unknown' AS "Stage", 'All' AS "Region", 'Female' AS "Sex", 'Age 80+' AS "Age", SUM(statisticofinterest_pancreas) as statistic_of_interest FROM tumour_cohort_linked_pancreas WHERE DIAGNOSISYEAR = '2017' AND MORPH_GROUP = 'Carcinoma and Other' AND STAGE_SPLIT23 = 'Stage unknown' AND SPLIT_60_TO_80 = 'Age 80+' AND SEX = 'Female' UNION ALL SELECT '2017' AS "Year", 'Carcinoma and Other' AS "Tumour Type", 'Stage unknown' AS "Stage", 'All' AS "Region", 'Male' AS "Sex", 'Age 80+' AS "Age", SUM(statisticofinterest_pancreas) as statistic_of_interest FROM tumour_cohort_linked_pancreas WHERE DIAGNOSISYEAR = '2017' AND MORPH_GROUP = 'Carcinoma and Other' AND STAGE_SPLIT23 = 'Stage unknown' AND SPLIT_60_TO_80 = 'Age 80+' AND SEX = 'Male' UNION ALL SELECT '2017' AS "Year", 'Neuroendocrine' AS "Tumour Type", 'All' AS "Stage", 'All' AS "Region", 'All' AS "Sex", 'All' AS "Age", SUM(statisticofinterest_pancreas) as statistic_of_interest FROM tumour_cohort_linked_pancreas WHERE DIAGNOSISYEAR = '2017' AND MORPH_GROUP = 'Neuroendocrine' UNION ALL SELECT '2017' AS "Year", 'Neuroendocrine' AS "Tumour Type", 'All' AS "Stage", 'All' AS "Region", 'All' AS "Sex", 'Age 00-49' AS "Age", SUM(statisticofinterest_pancreas) as statistic_of_interest FROM tumour_cohort_linked_pancreas WHERE DIAGNOSISYEAR = '2017' AND MORPH_GROUP = 'Neuroendocrine' AND SPLIT_50_TO_70 = 'Age 00-49' UNION ALL SELECT '2017' AS "Year", 'Neuroendocrine' AS "Tumour Type", 'All' AS "Stage", 'All' AS "Region", 'All' AS "Sex", 'Age 50-59' AS "Age", SUM(statisticofinterest_pancreas) as statistic_of_interest FROM tumour_cohort_linked_pancreas WHERE DIAGNOSISYEAR = '2017' AND MORPH_GROUP = 'Neuroendocrine' AND SPLIT_50_TO_70 = 'Age 50-59' UNION ALL SELECT '2017' AS "Year", 'Neuroendocrine' AS "Tumour Type", 'All' AS "Stage", 'All' AS "Region", 'All' AS "Sex", 'Age 60-69' AS "Age", SUM(statisticofinterest_pancreas) as statistic_of_interest FROM tumour_cohort_linked_pancreas WHERE DIAGNOSISYEAR = '2017' AND MORPH_GROUP = 'Neuroendocrine' AND SPLIT_50_TO_70 = 'Age 60-69' UNION ALL SELECT '2017' AS "Year", 'Neuroendocrine' AS "Tumour Type", 'All' AS "Stage", 'All' AS "Region", 'All' AS "Sex", 'Age 70+' AS "Age", SUM(statisticofinterest_pancreas) as statistic_of_interest FROM tumour_cohort_linked_pancreas WHERE DIAGNOSISYEAR = '2017' AND MORPH_GROUP = 'Neuroendocrine' AND SPLIT_50_TO_70 = 'Age 70+' UNION ALL SELECT '2018' AS "Year", 'All' AS "Tumour Type", 'All' AS "Stage", 'All' AS "Region", 'All' AS "Sex", 'All' AS "Age", SUM(statisticofinterest_pancreas) as statistic_of_interest FROM tumour_cohort_linked_pancreas WHERE DIAGNOSISYEAR = '2018' UNION ALL SELECT '2018' AS "Year", 'Carcinoma and Other' AS "Tumour Type", 'All' AS "Stage", 'All' AS "Region", 'All' AS "Sex", 'All' AS "Age", SUM(statisticofinterest_pancreas) as statistic_of_interest FROM tumour_cohort_linked_pancreas WHERE DIAGNOSISYEAR = '2018' AND MORPH_GROUP = 'Carcinoma and Other' UNION ALL SELECT '2018' AS "Year", 'Carcinoma and Other' AS "Tumour Type", 'Stage 1-2' AS "Stage", 'All' AS "Region", 'All' AS "Sex", 'All' AS "Age", SUM(statisticofinterest_pancreas) as statistic_of_interest FROM tumour_cohort_linked_pancreas WHERE DIAGNOSISYEAR = '2018' AND MORPH_GROUP = 'Carcinoma and Other' AND STAGE_SPLIT23 = 'Stage 1-2' UNION ALL SELECT '2018' AS "Year", 'Carcinoma and Other' AS "Tumour Type", 'Stage 1-2' AS "Stage", 'All' AS "Region", 'All' AS "Sex", 'Age 00-59' AS "Age", SUM(statisticofinterest_pancreas) as statistic_of_interest FROM tumour_cohort_linked_pancreas WHERE DIAGNOSISYEAR = '2018' AND MORPH_GROUP = 'Carcinoma and Other' AND STAGE_SPLIT23 = 'Stage 1-2' AND SPLIT_60_TO_80 = 'Age 00-59' UNION ALL SELECT '2018' AS "Year", 'Carcinoma and Other' AS "Tumour Type", 'Stage 1-2' AS "Stage", 'All' AS "Region", 'All' AS "Sex", 'Age 60-69' AS "Age", SUM(statisticofinterest_pancreas) as statistic_of_interest FROM tumour_cohort_linked_pancreas WHERE DIAGNOSISYEAR = '2018' AND MORPH_GROUP = 'Carcinoma and Other' AND STAGE_SPLIT23 = 'Stage 1-2' AND SPLIT_60_TO_80 = 'Age 60-69' UNION ALL SELECT '2018' AS "Year", 'Carcinoma and Other' AS "Tumour Type", 'Stage 1-2' AS "Stage", 'All' AS "Region", 'Female' AS "Sex", 'Age 60-69' AS "Age", SUM(statisticofinterest_pancreas) as statistic_of_interest FROM tumour_cohort_linked_pancreas WHERE DIAGNOSISYEAR = '2018' AND MORPH_GROUP = 'Carcinoma and Other' AND STAGE_SPLIT23 = 'Stage 1-2' AND SPLIT_60_TO_80 = 'Age 60-69' AND SEX = 'Female' UNION ALL SELECT '2018' AS "Year", 'Carcinoma and Other' AS "Tumour Type", 'Stage 1-2' AS "Stage", 'All' AS "Region", 'Male' AS "Sex", 'Age 60-69' AS "Age", SUM(statisticofinterest_pancreas) as statistic_of_interest FROM tumour_cohort_linked_pancreas WHERE DIAGNOSISYEAR = '2018' AND MORPH_GROUP = 'Carcinoma and Other' AND STAGE_SPLIT23 = 'Stage 1-2' AND SPLIT_60_TO_80 = 'Age 60-69' AND SEX = 'Male' UNION ALL SELECT '2018' AS "Year", 'Carcinoma and Other' AS "Tumour Type", 'Stage 1-2' AS "Stage", 'All' AS "Region", 'All' AS "Sex", 'Age 70-79' AS "Age", SUM(statisticofinterest_pancreas) as statistic_of_interest FROM tumour_cohort_linked_pancreas WHERE DIAGNOSISYEAR = '2018' AND MORPH_GROUP = 'Carcinoma and Other' AND STAGE_SPLIT23 = 'Stage 1-2' AND SPLIT_60_TO_80 = 'Age 70-79' UNION ALL SELECT '2018' AS "Year", 'Carcinoma and Other' AS "Tumour Type", 'Stage 1-2' AS "Stage", 'All' AS "Region", 'Female' AS "Sex", 'Age 70-79' AS "Age", SUM(statisticofinterest_pancreas) as statistic_of_interest FROM tumour_cohort_linked_pancreas WHERE DIAGNOSISYEAR = '2018' AND MORPH_GROUP = 'Carcinoma and Other' AND STAGE_SPLIT23 = 'Stage 1-2' AND SPLIT_60_TO_80 = 'Age 70-79' AND SEX = 'Female' UNION ALL SELECT '2018' AS "Year", 'Carcinoma and Other' AS "Tumour Type", 'Stage 1-2' AS "Stage", 'All' AS "Region", 'Male' AS "Sex", 'Age 70-79' AS "Age", SUM(statisticofinterest_pancreas) as statistic_of_interest FROM tumour_cohort_linked_pancreas WHERE DIAGNOSISYEAR = '2018' AND MORPH_GROUP = 'Carcinoma and Other' AND STAGE_SPLIT23 = 'Stage 1-2' AND SPLIT_60_TO_80 = 'Age 70-79' AND SEX = 'Male' UNION ALL SELECT '2018' AS "Year", 'Carcinoma and Other' AS "Tumour Type", 'Stage 1-2' AS "Stage", 'All' AS "Region", 'All' AS "Sex", 'Age 80+' AS "Age", SUM(statisticofinterest_pancreas) as statistic_of_interest FROM tumour_cohort_linked_pancreas WHERE DIAGNOSISYEAR = '2018' AND MORPH_GROUP = 'Carcinoma and Other' AND STAGE_SPLIT23 = 'Stage 1-2' AND SPLIT_60_TO_80 = 'Age 80+' UNION ALL SELECT '2018' AS "Year", 'Carcinoma and Other' AS "Tumour Type", 'Stage 1-2' AS "Stage", 'All' AS "Region", 'Female' AS "Sex", 'Age 80+' AS "Age", SUM(statisticofinterest_pancreas) as statistic_of_interest FROM tumour_cohort_linked_pancreas WHERE DIAGNOSISYEAR = '2018' AND MORPH_GROUP = 'Carcinoma and Other' AND STAGE_SPLIT23 = 'Stage 1-2' AND SPLIT_60_TO_80 = 'Age 80+' AND SEX = 'Female' UNION ALL SELECT '2018' AS "Year", 'Carcinoma and Other' AS "Tumour Type", 'Stage 1-2' AS "Stage", 'All' AS "Region", 'Male' AS "Sex", 'Age 80+' AS "Age", SUM(statisticofinterest_pancreas) as statistic_of_interest FROM tumour_cohort_linked_pancreas WHERE DIAGNOSISYEAR = '2018' AND MORPH_GROUP = 'Carcinoma and Other' AND STAGE_SPLIT23 = 'Stage 1-2' AND SPLIT_60_TO_80 = 'Age 80+' AND SEX = 'Male' UNION ALL SELECT '2018' AS "Year", 'Carcinoma and Other' AS "Tumour Type", 'Stage 3' AS "Stage", 'All' AS "Region", 'All' AS "Sex", 'All' AS "Age", SUM(statisticofinterest_pancreas) as statistic_of_interest FROM tumour_cohort_linked_pancreas WHERE DIAGNOSISYEAR = '2018' AND MORPH_GROUP = 'Carcinoma and Other' AND STAGE_SPLIT23 = 'Stage 3' UNION ALL SELECT '2018' AS "Year", 'Carcinoma and Other' AS "Tumour Type", 'Stage 3' AS "Stage", 'All' AS "Region", 'All' AS "Sex", 'Age 00-59' AS "Age", SUM(statisticofinterest_pancreas) as statistic_of_interest FROM tumour_cohort_linked_pancreas WHERE DIAGNOSISYEAR = '2018' AND MORPH_GROUP = 'Carcinoma and Other' AND STAGE_SPLIT23 = 'Stage 3' AND SPLIT_60_70 = 'Age 00-59' UNION ALL SELECT '2018' AS "Year", 'Carcinoma and Other' AS "Tumour Type", 'Stage 3' AS "Stage", 'All' AS "Region", 'All' AS "Sex", 'Age 60-69' AS "Age", SUM(statisticofinterest_pancreas) as statistic_of_interest FROM tumour_cohort_linked_pancreas WHERE DIAGNOSISYEAR = '2018' AND MORPH_GROUP = 'Carcinoma and Other' AND STAGE_SPLIT23 = 'Stage 3' AND SPLIT_60_70 = 'Age 60-69' UNION ALL SELECT '2018' AS "Year", 'Carcinoma and Other' AS "Tumour Type", 'Stage 3' AS "Stage", 'All' AS "Region", 'All' AS "Sex", 'Age 70+' AS "Age", SUM(statisticofinterest_pancreas) as statistic_of_interest FROM tumour_cohort_linked_pancreas WHERE DIAGNOSISYEAR = '2018' AND MORPH_GROUP = 'Carcinoma and Other' AND STAGE_SPLIT23 = 'Stage 3' AND SPLIT_60_70 = 'Age 70+' UNION ALL SELECT '2018' AS "Year", 'Carcinoma and Other' AS "Tumour Type", 'Stage 3' AS "Stage", 'All' AS "Region", 'Female' AS "Sex", 'Age 70+' AS "Age", SUM(statisticofinterest_pancreas) as statistic_of_interest FROM tumour_cohort_linked_pancreas WHERE DIAGNOSISYEAR = '2018' AND MORPH_GROUP = 'Carcinoma and Other' AND STAGE_SPLIT23 = 'Stage 3' AND SPLIT_60_70 = 'Age 70+' AND SEX = 'Female' UNION ALL SELECT '2018' AS "Year", 'Carcinoma and Other' AS "Tumour Type", 'Stage 3' AS "Stage", 'All' AS "Region", 'Male' AS "Sex", 'Age 70+' AS "Age", SUM(statisticofinterest_pancreas) as statistic_of_interest FROM tumour_cohort_linked_pancreas WHERE DIAGNOSISYEAR = '2018' AND MORPH_GROUP = 'Carcinoma and Other' AND STAGE_SPLIT23 = 'Stage 3' AND SPLIT_60_70 = 'Age 70+' AND SEX = 'Male' UNION ALL SELECT '2018' AS "Year", 'Carcinoma and Other' AS "Tumour Type", 'Stage 4' AS "Stage", 'All' AS "Region", 'All' AS "Sex", 'All' AS "Age", SUM(statisticofinterest_pancreas) as statistic_of_interest FROM tumour_cohort_linked_pancreas WHERE DIAGNOSISYEAR = '2018' AND MORPH_GROUP = 'Carcinoma and Other' AND STAGE_SPLIT23 = 'Stage 4' UNION ALL SELECT '2018' AS "Year", 'Carcinoma and Other' AS "Tumour Type", 'Stage 4' AS "Stage", 'All' AS "Region", 'All' AS "Sex", 'Age 00-49' AS "Age", SUM(statisticofinterest_pancreas) as statistic_of_interest FROM tumour_cohort_linked_pancreas WHERE DIAGNOSISYEAR = '2018' AND MORPH_GROUP = 'Carcinoma and Other' AND STAGE_SPLIT23 = 'Stage 4' AND SPLIT_50_TO_80 = 'Age 00-49' UNION ALL SELECT '2018' AS "Year", 'Carcinoma and Other' AS "Tumour Type", 'Stage 4' AS "Stage", 'All' AS "Region", 'All' AS "Sex", 'Age 50-59' AS "Age", SUM(statisticofinterest_pancreas) as statistic_of_interest FROM tumour_cohort_linked_pancreas WHERE DIAGNOSISYEAR = '2018' AND MORPH_GROUP = 'Carcinoma and Other' AND STAGE_SPLIT23 = 'Stage 4' AND SPLIT_50_TO_80 = 'Age 50-59' UNION ALL SELECT '2018' AS "Year", 'Carcinoma and Other' AS "Tumour Type", 'Stage 4' AS "Stage", 'All' AS "Region", 'All' AS "Sex", 'Age 60-69' AS "Age", SUM(statisticofinterest_pancreas) as statistic_of_interest FROM tumour_cohort_linked_pancreas WHERE DIAGNOSISYEAR = '2018' AND MORPH_GROUP = 'Carcinoma and Other' AND STAGE_SPLIT23 = 'Stage 4' AND SPLIT_50_TO_80 = 'Age 60-69' UNION ALL SELECT '2018' AS "Year", 'Carcinoma and Other' AS "Tumour Type", 'Stage 4' AS "Stage", 'London' AS "Region", 'All' AS "Sex", 'Age 60-69' AS "Age", SUM(statisticofinterest_pancreas) as statistic_of_interest FROM tumour_cohort_linked_pancreas WHERE DIAGNOSISYEAR = '2018' AND MORPH_GROUP = 'Carcinoma and Other' AND STAGE_SPLIT23 = 'Stage 4' AND SPLIT_50_TO_80 = 'Age 60-69' AND REGION = 'London' UNION ALL SELECT '2018' AS "Year", 'Carcinoma and Other' AS "Tumour Type", 'Stage 4' AS "Stage", 'Midlands and East of England' AS "Region", 'All' AS "Sex", 'Age 60-69' AS "Age", SUM(statisticofinterest_pancreas) as statistic_of_interest FROM tumour_cohort_linked_pancreas WHERE DIAGNOSISYEAR = '2018' AND MORPH_GROUP = 'Carcinoma and Other' AND STAGE_SPLIT23 = 'Stage 4' AND SPLIT_50_TO_80 = 'Age 60-69' AND REGION = 'Midlands and East of England' UNION ALL SELECT '2018' AS "Year", 'Carcinoma and Other' AS "Tumour Type", 'Stage 4' AS "Stage", 'Midlands and East of England' AS "Region", 'Female' AS "Sex", 'Age 60-69' AS "Age", SUM(statisticofinterest_pancreas) as statistic_of_interest FROM tumour_cohort_linked_pancreas WHERE DIAGNOSISYEAR = '2018' AND MORPH_GROUP = 'Carcinoma and Other' AND STAGE_SPLIT23 = 'Stage 4' AND SPLIT_50_TO_80 = 'Age 60-69' AND REGION = 'Midlands and East of England' AND SEX = 'Female' UNION ALL SELECT '2018' AS "Year", 'Carcinoma and Other' AS "Tumour Type", 'Stage 4' AS "Stage", 'Midlands and East of England' AS "Region", 'Male' AS "Sex", 'Age 60-69' AS "Age", SUM(statisticofinterest_pancreas) as statistic_of_interest FROM tumour_cohort_linked_pancreas WHERE DIAGNOSISYEAR = '2018' AND MORPH_GROUP = 'Carcinoma and Other' AND STAGE_SPLIT23 = 'Stage 4' AND SPLIT_50_TO_80 = 'Age 60-69' AND REGION = 'Midlands and East of England' AND SEX = 'Male' UNION ALL SELECT '2018' AS "Year", 'Carcinoma and Other' AS "Tumour Type", 'Stage 4' AS "Stage", 'North of England' AS "Region", 'All' AS "Sex", 'Age 60-69' AS "Age", SUM(statisticofinterest_pancreas) as statistic_of_interest FROM tumour_cohort_linked_pancreas WHERE DIAGNOSISYEAR = '2018' AND MORPH_GROUP = 'Carcinoma and Other' AND STAGE_SPLIT23 = 'Stage 4' AND SPLIT_50_TO_80 = 'Age 60-69' AND REGION = 'North of England' UNION ALL SELECT '2018' AS "Year", 'Carcinoma and Other' AS "Tumour Type", 'Stage 4' AS "Stage", 'North of England' AS "Region", 'Female' AS "Sex", 'Age 60-69' AS "Age", SUM(statisticofinterest_pancreas) as statistic_of_interest FROM tumour_cohort_linked_pancreas WHERE DIAGNOSISYEAR = '2018' AND MORPH_GROUP = 'Carcinoma and Other' AND STAGE_SPLIT23 = 'Stage 4' AND SPLIT_50_TO_80 = 'Age 60-69' AND REGION = 'North of England' AND SEX = 'Female' UNION ALL SELECT '2018' AS "Year", 'Carcinoma and Other' AS "Tumour Type", 'Stage 4' AS "Stage", 'North of England' AS "Region", 'Male' AS "Sex", 'Age 60-69' AS "Age", SUM(statisticofinterest_pancreas) as statistic_of_interest FROM tumour_cohort_linked_pancreas WHERE DIAGNOSISYEAR = '2018' AND MORPH_GROUP = 'Carcinoma and Other' AND STAGE_SPLIT23 = 'Stage 4' AND SPLIT_50_TO_80 = 'Age 60-69' AND REGION = 'North of England' AND SEX = 'Male' UNION ALL SELECT '2018' AS "Year", 'Carcinoma and Other' AS "Tumour Type", 'Stage 4' AS "Stage", 'South of England' AS "Region", 'All' AS "Sex", 'Age 60-69' AS "Age", SUM(statisticofinterest_pancreas) as statistic_of_interest FROM tumour_cohort_linked_pancreas WHERE DIAGNOSISYEAR = '2018' AND MORPH_GROUP = 'Carcinoma and Other' AND STAGE_SPLIT23 = 'Stage 4' AND SPLIT_50_TO_80 = 'Age 60-69' AND REGION = 'South of England' UNION ALL SELECT '2018' AS "Year", 'Carcinoma and Other' AS "Tumour Type", 'Stage 4' AS "Stage", 'South of England' AS "Region", 'Female' AS "Sex", 'Age 60-69' AS "Age", SUM(statisticofinterest_pancreas) as statistic_of_interest FROM tumour_cohort_linked_pancreas WHERE DIAGNOSISYEAR = '2018' AND MORPH_GROUP = 'Carcinoma and Other' AND STAGE_SPLIT23 = 'Stage 4' AND SPLIT_50_TO_80 = 'Age 60-69' AND REGION = 'South of England' AND SEX = 'Female' UNION ALL SELECT '2018' AS "Year", 'Carcinoma and Other' AS "Tumour Type", 'Stage 4' AS "Stage", 'South of England' AS "Region", 'Male' AS "Sex", 'Age 60-69' AS "Age", SUM(statisticofinterest_pancreas) as statistic_of_interest FROM tumour_cohort_linked_pancreas WHERE DIAGNOSISYEAR = '2018' AND MORPH_GROUP = 'Carcinoma and Other' AND STAGE_SPLIT23 = 'Stage 4' AND SPLIT_50_TO_80 = 'Age 60-69' AND REGION = 'South of England' AND SEX = 'Male' UNION ALL SELECT '2018' AS "Year", 'Carcinoma and Other' AS "Tumour Type", 'Stage 4' AS "Stage", 'All' AS "Region", 'All' AS "Sex", 'Age 70-79' AS "Age", SUM(statisticofinterest_pancreas) as statistic_of_interest FROM tumour_cohort_linked_pancreas WHERE DIAGNOSISYEAR = '2018' AND MORPH_GROUP = 'Carcinoma and Other' AND STAGE_SPLIT23 = 'Stage 4' AND SPLIT_50_TO_80 = 'Age 70-79' UNION ALL SELECT '2018' AS "Year", 'Carcinoma and Other' AS "Tumour Type", 'Stage 4' AS "Stage", 'London' AS "Region", 'All' AS "Sex", 'Age 70-79' AS "Age", SUM(statisticofinterest_pancreas) as statistic_of_interest FROM tumour_cohort_linked_pancreas WHERE DIAGNOSISYEAR = '2018' AND MORPH_GROUP = 'Carcinoma and Other' AND STAGE_SPLIT23 = 'Stage 4' AND SPLIT_50_TO_80 = 'Age 70-79' AND REGION = 'London' UNION ALL SELECT '2018' AS "Year", 'Carcinoma and Other' AS "Tumour Type", 'Stage 4' AS "Stage", 'Midlands and East of England' AS "Region", 'All' AS "Sex", 'Age 70-79' AS "Age", SUM(statisticofinterest_pancreas) as statistic_of_interest FROM tumour_cohort_linked_pancreas WHERE DIAGNOSISYEAR = '2018' AND MORPH_GROUP = 'Carcinoma and Other' AND STAGE_SPLIT23 = 'Stage 4' AND SPLIT_50_TO_80 = 'Age 70-79' AND REGION = 'Midlands and East of England' UNION ALL SELECT '2018' AS "Year", 'Carcinoma and Other' AS "Tumour Type", 'Stage 4' AS "Stage", 'Midlands and East of England' AS "Region", 'Female' AS "Sex", 'Age 70-79' AS "Age", SUM(statisticofinterest_pancreas) as statistic_of_interest FROM tumour_cohort_linked_pancreas WHERE DIAGNOSISYEAR = '2018' AND MORPH_GROUP = 'Carcinoma and Other' AND STAGE_SPLIT23 = 'Stage 4' AND SPLIT_50_TO_80 = 'Age 70-79' AND REGION = 'Midlands and East of England' AND SEX = 'Female' UNION ALL SELECT '2018' AS "Year", 'Carcinoma and Other' AS "Tumour Type", 'Stage 4' AS "Stage", 'Midlands and East of England' AS "Region", 'Male' AS "Sex", 'Age 70-79' AS "Age", SUM(statisticofinterest_pancreas) as statistic_of_interest FROM tumour_cohort_linked_pancreas WHERE DIAGNOSISYEAR = '2018' AND MORPH_GROUP = 'Carcinoma and Other' AND STAGE_SPLIT23 = 'Stage 4' AND SPLIT_50_TO_80 = 'Age 70-79' AND REGION = 'Midlands and East of England' AND SEX = 'Male' UNION ALL SELECT '2018' AS "Year", 'Carcinoma and Other' AS "Tumour Type", 'Stage 4' AS "Stage", 'North of England' AS "Region", 'All' AS "Sex", 'Age 70-79' AS "Age", SUM(statisticofinterest_pancreas) as statistic_of_interest FROM tumour_cohort_linked_pancreas WHERE DIAGNOSISYEAR = '2018' AND MORPH_GROUP = 'Carcinoma and Other' AND STAGE_SPLIT23 = 'Stage 4' AND SPLIT_50_TO_80 = 'Age 70-79' AND REGION = 'North of England' UNION ALL SELECT '2018' AS "Year", 'Carcinoma and Other' AS "Tumour Type", 'Stage 4' AS "Stage", 'North of England' AS "Region", 'Female' AS "Sex", 'Age 70-79' AS "Age", SUM(statisticofinterest_pancreas) as statistic_of_interest FROM tumour_cohort_linked_pancreas WHERE DIAGNOSISYEAR = '2018' AND MORPH_GROUP = 'Carcinoma and Other' AND STAGE_SPLIT23 = 'Stage 4' AND SPLIT_50_TO_80 = 'Age 70-79' AND REGION = 'North of England' AND SEX = 'Female' UNION ALL SELECT '2018' AS "Year", 'Carcinoma and Other' AS "Tumour Type", 'Stage 4' AS "Stage", 'North of England' AS "Region", 'Male' AS "Sex", 'Age 70-79' AS "Age", SUM(statisticofinterest_pancreas) as statistic_of_interest FROM tumour_cohort_linked_pancreas WHERE DIAGNOSISYEAR = '2018' AND MORPH_GROUP = 'Carcinoma and Other' AND STAGE_SPLIT23 = 'Stage 4' AND SPLIT_50_TO_80 = 'Age 70-79' AND REGION = 'North of England' AND SEX = 'Male' UNION ALL SELECT '2018' AS "Year", 'Carcinoma and Other' AS "Tumour Type", 'Stage 4' AS "Stage", 'South of England' AS "Region", 'All' AS "Sex", 'Age 70-79' AS "Age", SUM(statisticofinterest_pancreas) as statistic_of_interest FROM tumour_cohort_linked_pancreas WHERE DIAGNOSISYEAR = '2018' AND MORPH_GROUP = 'Carcinoma and Other' AND STAGE_SPLIT23 = 'Stage 4' AND SPLIT_50_TO_80 = 'Age 70-79' AND REGION = 'South of England' UNION ALL SELECT '2018' AS "Year", 'Carcinoma and Other' AS "Tumour Type", 'Stage 4' AS "Stage", 'South of England' AS "Region", 'Female' AS "Sex", 'Age 70-79' AS "Age", SUM(statisticofinterest_pancreas) as statistic_of_interest FROM tumour_cohort_linked_pancreas WHERE DIAGNOSISYEAR = '2018' AND MORPH_GROUP = 'Carcinoma and Other' AND STAGE_SPLIT23 = 'Stage 4' AND SPLIT_50_TO_80 = 'Age 70-79' AND REGION = 'South of England' AND SEX = 'Female' UNION ALL SELECT '2018' AS "Year", 'Carcinoma and Other' AS "Tumour Type", 'Stage 4' AS "Stage", 'South of England' AS "Region", 'Male' AS "Sex", 'Age 70-79' AS "Age", SUM(statisticofinterest_pancreas) as statistic_of_interest FROM tumour_cohort_linked_pancreas WHERE DIAGNOSISYEAR = '2018' AND MORPH_GROUP = 'Carcinoma and Other' AND STAGE_SPLIT23 = 'Stage 4' AND SPLIT_50_TO_80 = 'Age 70-79' AND REGION = 'South of England' AND SEX = 'Male' UNION ALL SELECT '2018' AS "Year", 'Carcinoma and Other' AS "Tumour Type", 'Stage 4' AS "Stage", 'All' AS "Region", 'All' AS "Sex", 'Age 80+' AS "Age", SUM(statisticofinterest_pancreas) as statistic_of_interest FROM tumour_cohort_linked_pancreas WHERE DIAGNOSISYEAR = '2018' AND MORPH_GROUP = 'Carcinoma and Other' AND STAGE_SPLIT23 = 'Stage 4' AND SPLIT_50_TO_80 = 'Age 80+' UNION ALL SELECT '2018' AS "Year", 'Carcinoma and Other' AS "Tumour Type", 'Stage 4' AS "Stage", 'London' AS "Region", 'All' AS "Sex", 'Age 80+' AS "Age", SUM(statisticofinterest_pancreas) as statistic_of_interest FROM tumour_cohort_linked_pancreas WHERE DIAGNOSISYEAR = '2018' AND MORPH_GROUP = 'Carcinoma and Other' AND STAGE_SPLIT23 = 'Stage 4' AND SPLIT_50_TO_80 = 'Age 80+' AND REGION = 'London' UNION ALL SELECT '2018' AS "Year", 'Carcinoma and Other' AS "Tumour Type", 'Stage 4' AS "Stage", 'Midlands and East of England' AS "Region", 'All' AS "Sex", 'Age 80+' AS "Age", SUM(statisticofinterest_pancreas) as statistic_of_interest FROM tumour_cohort_linked_pancreas WHERE DIAGNOSISYEAR = '2018' AND MORPH_GROUP = 'Carcinoma and Other' AND STAGE_SPLIT23 = 'Stage 4' AND SPLIT_50_TO_80 = 'Age 80+' AND REGION = 'Midlands and East of England' UNION ALL SELECT '2018' AS "Year", 'Carcinoma and Other' AS "Tumour Type", 'Stage 4' AS "Stage", 'Midlands and East of England' AS "Region", 'Female' AS "Sex", 'Age 80+' AS "Age", SUM(statisticofinterest_pancreas) as statistic_of_interest FROM tumour_cohort_linked_pancreas WHERE DIAGNOSISYEAR = '2018' AND MORPH_GROUP = 'Carcinoma and Other' AND STAGE_SPLIT23 = 'Stage 4' AND SPLIT_50_TO_80 = 'Age 80+' AND REGION = 'Midlands and East of England' AND SEX = 'Female' UNION ALL SELECT '2018' AS "Year", 'Carcinoma and Other' AS "Tumour Type", 'Stage 4' AS "Stage", 'Midlands and East of England' AS "Region", 'Male' AS "Sex", 'Age 80+' AS "Age", SUM(statisticofinterest_pancreas) as statistic_of_interest FROM tumour_cohort_linked_pancreas WHERE DIAGNOSISYEAR = '2018' AND MORPH_GROUP = 'Carcinoma and Other' AND STAGE_SPLIT23 = 'Stage 4' AND SPLIT_50_TO_80 = 'Age 80+' AND REGION = 'Midlands and East of England' AND SEX = 'Male' UNION ALL SELECT '2018' AS "Year", 'Carcinoma and Other' AS "Tumour Type", 'Stage 4' AS "Stage", 'North of England' AS "Region", 'All' AS "Sex", 'Age 80+' AS "Age", SUM(statisticofinterest_pancreas) as statistic_of_interest FROM tumour_cohort_linked_pancreas WHERE DIAGNOSISYEAR = '2018' AND MORPH_GROUP = 'Carcinoma and Other' AND STAGE_SPLIT23 = 'Stage 4' AND SPLIT_50_TO_80 = 'Age 80+' AND REGION = 'North of England' UNION ALL SELECT '2018' AS "Year", 'Carcinoma and Other' AS "Tumour Type", 'Stage 4' AS "Stage", 'North of England' AS "Region", 'Female' AS "Sex", 'Age 80+' AS "Age", SUM(statisticofinterest_pancreas) as statistic_of_interest FROM tumour_cohort_linked_pancreas WHERE DIAGNOSISYEAR = '2018' AND MORPH_GROUP = 'Carcinoma and Other' AND STAGE_SPLIT23 = 'Stage 4' AND SPLIT_50_TO_80 = 'Age 80+' AND REGION = 'North of England' AND SEX = 'Female' UNION ALL SELECT '2018' AS "Year", 'Carcinoma and Other' AS "Tumour Type", 'Stage 4' AS "Stage", 'North of England' AS "Region", 'Male' AS "Sex", 'Age 80+' AS "Age", SUM(statisticofinterest_pancreas) as statistic_of_interest FROM tumour_cohort_linked_pancreas WHERE DIAGNOSISYEAR = '2018' AND MORPH_GROUP = 'Carcinoma and Other' AND STAGE_SPLIT23 = 'Stage 4' AND SPLIT_50_TO_80 = 'Age 80+' AND REGION = 'North of England' AND SEX = 'Male' UNION ALL SELECT '2018' AS "Year", 'Carcinoma and Other' AS "Tumour Type", 'Stage 4' AS "Stage", 'South of England' AS "Region", 'All' AS "Sex", 'Age 80+' AS "Age", SUM(statisticofinterest_pancreas) as statistic_of_interest FROM tumour_cohort_linked_pancreas WHERE DIAGNOSISYEAR = '2018' AND MORPH_GROUP = 'Carcinoma and Other' AND STAGE_SPLIT23 = 'Stage 4' AND SPLIT_50_TO_80 = 'Age 80+' AND REGION = 'South of England' UNION ALL SELECT '2018' AS "Year", 'Carcinoma and Other' AS "Tumour Type", 'Stage 4' AS "Stage", 'South of England' AS "Region", 'Female' AS "Sex", 'Age 80+' AS "Age", SUM(statisticofinterest_pancreas) as statistic_of_interest FROM tumour_cohort_linked_pancreas WHERE DIAGNOSISYEAR = '2018' AND MORPH_GROUP = 'Carcinoma and Other' AND STAGE_SPLIT23 = 'Stage 4' AND SPLIT_50_TO_80 = 'Age 80+' AND REGION = 'South of England' AND SEX = 'Female' UNION ALL SELECT '2018' AS "Year", 'Carcinoma and Other' AS "Tumour Type", 'Stage 4' AS "Stage", 'South of England' AS "Region", 'Male' AS "Sex", 'Age 80+' AS "Age", SUM(statisticofinterest_pancreas) as statistic_of_interest FROM tumour_cohort_linked_pancreas WHERE DIAGNOSISYEAR = '2018' AND MORPH_GROUP = 'Carcinoma and Other' AND STAGE_SPLIT23 = 'Stage 4' AND SPLIT_50_TO_80 = 'Age 80+' AND REGION = 'South of England' AND SEX = 'Male' UNION ALL SELECT '2018' AS "Year", 'Carcinoma and Other' AS "Tumour Type", 'Stage unknown' AS "Stage", 'All' AS "Region", 'All' AS "Sex", 'All' AS "Age", SUM(statisticofinterest_pancreas) as statistic_of_interest FROM tumour_cohort_linked_pancreas WHERE DIAGNOSISYEAR = '2018' AND MORPH_GROUP = 'Carcinoma and Other' AND STAGE_SPLIT23 = 'Stage unknown' UNION ALL SELECT '2018' AS "Year", 'Carcinoma and Other' AS "Tumour Type", 'Stage unknown' AS "Stage", 'All' AS "Region", 'All' AS "Sex", 'Age 00-59' AS "Age", SUM(statisticofinterest_pancreas) as statistic_of_interest FROM tumour_cohort_linked_pancreas WHERE DIAGNOSISYEAR = '2018' AND MORPH_GROUP = 'Carcinoma and Other' AND STAGE_SPLIT23 = 'Stage unknown' AND SPLIT_60_TO_80 = 'Age 00-59' UNION ALL SELECT '2018' AS "Year", 'Carcinoma and Other' AS "Tumour Type", 'Stage unknown' AS "Stage", 'All' AS "Region", 'All' AS "Sex", 'Age 60-69' AS "Age", SUM(statisticofinterest_pancreas) as statistic_of_interest FROM tumour_cohort_linked_pancreas WHERE DIAGNOSISYEAR = '2018' AND MORPH_GROUP = 'Carcinoma and Other' AND STAGE_SPLIT23 = 'Stage unknown' AND SPLIT_60_TO_80 = 'Age 60-69' UNION ALL SELECT '2018' AS "Year", 'Carcinoma and Other' AS "Tumour Type", 'Stage unknown' AS "Stage", 'All' AS "Region", 'Female' AS "Sex", 'Age 60-69' AS "Age", SUM(statisticofinterest_pancreas) as statistic_of_interest FROM tumour_cohort_linked_pancreas WHERE DIAGNOSISYEAR = '2018' AND MORPH_GROUP = 'Carcinoma and Other' AND STAGE_SPLIT23 = 'Stage unknown' AND SPLIT_60_TO_80 = 'Age 60-69' AND SEX = 'Female' UNION ALL SELECT '2018' AS "Year", 'Carcinoma and Other' AS "Tumour Type", 'Stage unknown' AS "Stage", 'All' AS "Region", 'Male' AS "Sex", 'Age 60-69' AS "Age", SUM(statisticofinterest_pancreas) as statistic_of_interest FROM tumour_cohort_linked_pancreas WHERE DIAGNOSISYEAR = '2018' AND MORPH_GROUP = 'Carcinoma and Other' AND STAGE_SPLIT23 = 'Stage unknown' AND SPLIT_60_TO_80 = 'Age 60-69' AND SEX = 'Male' UNION ALL SELECT '2018' AS "Year", 'Carcinoma and Other' AS "Tumour Type", 'Stage unknown' AS "Stage", 'All' AS "Region", 'All' AS "Sex", 'Age 70-79' AS "Age", SUM(statisticofinterest_pancreas) as statistic_of_interest FROM tumour_cohort_linked_pancreas WHERE DIAGNOSISYEAR = '2018' AND MORPH_GROUP = 'Carcinoma and Other' AND STAGE_SPLIT23 = 'Stage unknown' AND SPLIT_60_TO_80 = 'Age 70-79' UNION ALL SELECT '2018' AS "Year", 'Carcinoma and Other' AS "Tumour Type", 'Stage unknown' AS "Stage", 'All' AS "Region", 'Female' AS "Sex", 'Age 70-79' AS "Age", SUM(statisticofinterest_pancreas) as statistic_of_interest FROM tumour_cohort_linked_pancreas WHERE DIAGNOSISYEAR = '2018' AND MORPH_GROUP = 'Carcinoma and Other' AND STAGE_SPLIT23 = 'Stage unknown' AND SPLIT_60_TO_80 = 'Age 70-79' AND SEX = 'Female' UNION ALL SELECT '2018' AS "Year", 'Carcinoma and Other' AS "Tumour Type", 'Stage unknown' AS "Stage", 'All' AS "Region", 'Male' AS "Sex", 'Age 70-79' AS "Age", SUM(statisticofinterest_pancreas) as statistic_of_interest FROM tumour_cohort_linked_pancreas WHERE DIAGNOSISYEAR = '2018' AND MORPH_GROUP = 'Carcinoma and Other' AND STAGE_SPLIT23 = 'Stage unknown' AND SPLIT_60_TO_80 = 'Age 70-79' AND SEX = 'Male' UNION ALL SELECT '2018' AS "Year", 'Carcinoma and Other' AS "Tumour Type", 'Stage unknown' AS "Stage", 'All' AS "Region", 'All' AS "Sex", 'Age 80+' AS "Age", SUM(statisticofinterest_pancreas) as statistic_of_interest FROM tumour_cohort_linked_pancreas WHERE DIAGNOSISYEAR = '2018' AND MORPH_GROUP = 'Carcinoma and Other' AND STAGE_SPLIT23 = 'Stage unknown' AND SPLIT_60_TO_80 = 'Age 80+' UNION ALL SELECT '2018' AS "Year", 'Carcinoma and Other' AS "Tumour Type", 'Stage unknown' AS "Stage", 'All' AS "Region", 'Female' AS "Sex", 'Age 80+' AS "Age", SUM(statisticofinterest_pancreas) as statistic_of_interest FROM tumour_cohort_linked_pancreas WHERE DIAGNOSISYEAR = '2018' AND MORPH_GROUP = 'Carcinoma and Other' AND STAGE_SPLIT23 = 'Stage unknown' AND SPLIT_60_TO_80 = 'Age 80+' AND SEX = 'Female' UNION ALL SELECT '2018' AS "Year", 'Carcinoma and Other' AS "Tumour Type", 'Stage unknown' AS "Stage", 'All' AS "Region", 'Male' AS "Sex", 'Age 80+' AS "Age", SUM(statisticofinterest_pancreas) as statistic_of_interest FROM tumour_cohort_linked_pancreas WHERE DIAGNOSISYEAR = '2018' AND MORPH_GROUP = 'Carcinoma and Other' AND STAGE_SPLIT23 = 'Stage unknown' AND SPLIT_60_TO_80 = 'Age 80+' AND SEX = 'Male' UNION ALL SELECT '2018' AS "Year", 'Neuroendocrine' AS "Tumour Type", 'All' AS "Stage", 'All' AS "Region", 'All' AS "Sex", 'All' AS "Age", SUM(statisticofinterest_pancreas) as statistic_of_interest FROM tumour_cohort_linked_pancreas WHERE DIAGNOSISYEAR = '2018' AND MORPH_GROUP = 'Neuroendocrine' UNION ALL SELECT '2018' AS "Year", 'Neuroendocrine' AS "Tumour Type", 'All' AS "Stage", 'All' AS "Region", 'All' AS "Sex", 'Age 00-49' AS "Age", SUM(statisticofinterest_pancreas) as statistic_of_interest FROM tumour_cohort_linked_pancreas WHERE DIAGNOSISYEAR = '2018' AND MORPH_GROUP = 'Neuroendocrine' AND SPLIT_50_TO_70 = 'Age 00-49' UNION ALL SELECT '2018' AS "Year", 'Neuroendocrine' AS "Tumour Type", 'All' AS "Stage", 'All' AS "Region", 'All' AS "Sex", 'Age 50-59' AS "Age", SUM(statisticofinterest_pancreas) as statistic_of_interest FROM tumour_cohort_linked_pancreas WHERE DIAGNOSISYEAR = '2018' AND MORPH_GROUP = 'Neuroendocrine' AND SPLIT_50_TO_70 = 'Age 50-59' UNION ALL SELECT '2018' AS "Year", 'Neuroendocrine' AS "Tumour Type", 'All' AS "Stage", 'All' AS "Region", 'All' AS "Sex", 'Age 60-69' AS "Age", SUM(statisticofinterest_pancreas) as statistic_of_interest FROM tumour_cohort_linked_pancreas WHERE DIAGNOSISYEAR = '2018' AND MORPH_GROUP = 'Neuroendocrine' AND SPLIT_50_TO_70 = 'Age 60-69' UNION ALL SELECT '2018' AS "Year", 'Neuroendocrine' AS "Tumour Type", 'All' AS "Stage", 'All' AS "Region", 'All' AS "Sex", 'Age 70+' AS "Age", SUM(statisticofinterest_pancreas) as statistic_of_interest FROM tumour_cohort_linked_pancreas WHERE DIAGNOSISYEAR = '2018' AND MORPH_GROUP = 'Neuroendocrine' AND SPLIT_50_TO_70 = 'Age 70+' UNION ALL SELECT '2019' AS "Year", 'All' AS "Tumour Type", 'All' AS "Stage", 'All' AS "Region", 'All' AS "Sex", 'All' AS "Age", SUM(statisticofinterest_pancreas) as statistic_of_interest FROM tumour_cohort_linked_pancreas WHERE DIAGNOSISYEAR = '2019' UNION ALL SELECT '2019' AS "Year", 'Carcinoma and Other' AS "Tumour Type", 'All' AS "Stage", 'All' AS "Region", 'All' AS "Sex", 'All' AS "Age", SUM(statisticofinterest_pancreas) as statistic_of_interest FROM tumour_cohort_linked_pancreas WHERE DIAGNOSISYEAR = '2019' AND MORPH_GROUP = 'Carcinoma and Other' UNION ALL SELECT '2019' AS "Year", 'Carcinoma and Other' AS "Tumour Type", 'Stage 1-2' AS "Stage", 'All' AS "Region", 'All' AS "Sex", 'All' AS "Age", SUM(statisticofinterest_pancreas) as statistic_of_interest FROM tumour_cohort_linked_pancreas WHERE DIAGNOSISYEAR = '2019' AND MORPH_GROUP = 'Carcinoma and Other' AND STAGE_SPLIT23 = 'Stage 1-2' UNION ALL SELECT '2019' AS "Year", 'Carcinoma and Other' AS "Tumour Type", 'Stage 1-2' AS "Stage", 'All' AS "Region", 'All' AS "Sex", 'Age 00-59' AS "Age", SUM(statisticofinterest_pancreas) as statistic_of_interest FROM tumour_cohort_linked_pancreas WHERE DIAGNOSISYEAR = '2019' AND MORPH_GROUP = 'Carcinoma and Other' AND STAGE_SPLIT23 = 'Stage 1-2' AND SPLIT_60_TO_80 = 'Age 00-59' UNION ALL SELECT '2019' AS "Year", 'Carcinoma and Other' AS "Tumour Type", 'Stage 1-2' AS "Stage", 'All' AS "Region", 'All' AS "Sex", 'Age 60-69' AS "Age", SUM(statisticofinterest_pancreas) as statistic_of_interest FROM tumour_cohort_linked_pancreas WHERE DIAGNOSISYEAR = '2019' AND MORPH_GROUP = 'Carcinoma and Other' AND STAGE_SPLIT23 = 'Stage 1-2' AND SPLIT_60_TO_80 = 'Age 60-69' UNION ALL SELECT '2019' AS "Year", 'Carcinoma and Other' AS "Tumour Type", 'Stage 1-2' AS "Stage", 'All' AS "Region", 'Female' AS "Sex", 'Age 60-69' AS "Age", SUM(statisticofinterest_pancreas) as statistic_of_interest FROM tumour_cohort_linked_pancreas WHERE DIAGNOSISYEAR = '2019' AND MORPH_GROUP = 'Carcinoma and Other' AND STAGE_SPLIT23 = 'Stage 1-2' AND SPLIT_60_TO_80 = 'Age 60-69' AND SEX = 'Female' UNION ALL SELECT '2019' AS "Year", 'Carcinoma and Other' AS "Tumour Type", 'Stage 1-2' AS "Stage", 'All' AS "Region", 'Male' AS "Sex", 'Age 60-69' AS "Age", SUM(statisticofinterest_pancreas) as statistic_of_interest FROM tumour_cohort_linked_pancreas WHERE DIAGNOSISYEAR = '2019' AND MORPH_GROUP = 'Carcinoma and Other' AND STAGE_SPLIT23 = 'Stage 1-2' AND SPLIT_60_TO_80 = 'Age 60-69' AND SEX = 'Male' UNION ALL SELECT '2019' AS "Year", 'Carcinoma and Other' AS "Tumour Type", 'Stage 1-2' AS "Stage", 'All' AS "Region", 'All' AS "Sex", 'Age 70-79' AS "Age", SUM(statisticofinterest_pancreas) as statistic_of_interest FROM tumour_cohort_linked_pancreas WHERE DIAGNOSISYEAR = '2019' AND MORPH_GROUP = 'Carcinoma and Other' AND STAGE_SPLIT23 = 'Stage 1-2' AND SPLIT_60_TO_80 = 'Age 70-79' UNION ALL SELECT '2019' AS "Year", 'Carcinoma and Other' AS "Tumour Type", 'Stage 1-2' AS "Stage", 'All' AS "Region", 'Female' AS "Sex", 'Age 70-79' AS "Age", SUM(statisticofinterest_pancreas) as statistic_of_interest FROM tumour_cohort_linked_pancreas WHERE DIAGNOSISYEAR = '2019' AND MORPH_GROUP = 'Carcinoma and Other' AND STAGE_SPLIT23 = 'Stage 1-2' AND SPLIT_60_TO_80 = 'Age 70-79' AND SEX = 'Female' UNION ALL SELECT '2019' AS "Year", 'Carcinoma and Other' AS "Tumour Type", 'Stage 1-2' AS "Stage", 'All' AS "Region", 'Male' AS "Sex", 'Age 70-79' AS "Age", SUM(statisticofinterest_pancreas) as statistic_of_interest FROM tumour_cohort_linked_pancreas WHERE DIAGNOSISYEAR = '2019' AND MORPH_GROUP = 'Carcinoma and Other' AND STAGE_SPLIT23 = 'Stage 1-2' AND SPLIT_60_TO_80 = 'Age 70-79' AND SEX = 'Male' UNION ALL SELECT '2019' AS "Year", 'Carcinoma and Other' AS "Tumour Type", 'Stage 1-2' AS "Stage", 'All' AS "Region", 'All' AS "Sex", 'Age 80+' AS "Age", SUM(statisticofinterest_pancreas) as statistic_of_interest FROM tumour_cohort_linked_pancreas WHERE DIAGNOSISYEAR = '2019' AND MORPH_GROUP = 'Carcinoma and Other' AND STAGE_SPLIT23 = 'Stage 1-2' AND SPLIT_60_TO_80 = 'Age 80+' UNION ALL SELECT '2019' AS "Year", 'Carcinoma and Other' AS "Tumour Type", 'Stage 1-2' AS "Stage", 'All' AS "Region", 'Female' AS "Sex", 'Age 80+' AS "Age", SUM(statisticofinterest_pancreas) as statistic_of_interest FROM tumour_cohort_linked_pancreas WHERE DIAGNOSISYEAR = '2019' AND MORPH_GROUP = 'Carcinoma and Other' AND STAGE_SPLIT23 = 'Stage 1-2' AND SPLIT_60_TO_80 = 'Age 80+' AND SEX = 'Female' UNION ALL SELECT '2019' AS "Year", 'Carcinoma and Other' AS "Tumour Type", 'Stage 1-2' AS "Stage", 'All' AS "Region", 'Male' AS "Sex", 'Age 80+' AS "Age", SUM(statisticofinterest_pancreas) as statistic_of_interest FROM tumour_cohort_linked_pancreas WHERE DIAGNOSISYEAR = '2019' AND MORPH_GROUP = 'Carcinoma and Other' AND STAGE_SPLIT23 = 'Stage 1-2' AND SPLIT_60_TO_80 = 'Age 80+' AND SEX = 'Male' UNION ALL SELECT '2019' AS "Year", 'Carcinoma and Other' AS "Tumour Type", 'Stage 3' AS "Stage", 'All' AS "Region", 'All' AS "Sex", 'All' AS "Age", SUM(statisticofinterest_pancreas) as statistic_of_interest FROM tumour_cohort_linked_pancreas WHERE DIAGNOSISYEAR = '2019' AND MORPH_GROUP = 'Carcinoma and Other' AND STAGE_SPLIT23 = 'Stage 3' UNION ALL SELECT '2019' AS "Year", 'Carcinoma and Other' AS "Tumour Type", 'Stage 3' AS "Stage", 'All' AS "Region", 'All' AS "Sex", 'Age 00-59' AS "Age", SUM(statisticofinterest_pancreas) as statistic_of_interest FROM tumour_cohort_linked_pancreas WHERE DIAGNOSISYEAR = '2019' AND MORPH_GROUP = 'Carcinoma and Other' AND STAGE_SPLIT23 = 'Stage 3' AND SPLIT_60_70 = 'Age 00-59' UNION ALL SELECT '2019' AS "Year", 'Carcinoma and Other' AS "Tumour Type", 'Stage 3' AS "Stage", 'All' AS "Region", 'All' AS "Sex", 'Age 60-69' AS "Age", SUM(statisticofinterest_pancreas) as statistic_of_interest FROM tumour_cohort_linked_pancreas WHERE DIAGNOSISYEAR = '2019' AND MORPH_GROUP = 'Carcinoma and Other' AND STAGE_SPLIT23 = 'Stage 3' AND SPLIT_60_70 = 'Age 60-69' UNION ALL SELECT '2019' AS "Year", 'Carcinoma and Other' AS "Tumour Type", 'Stage 3' AS "Stage", 'All' AS "Region", 'All' AS "Sex", 'Age 70+' AS "Age", SUM(statisticofinterest_pancreas) as statistic_of_interest FROM tumour_cohort_linked_pancreas WHERE DIAGNOSISYEAR = '2019' AND MORPH_GROUP = 'Carcinoma and Other' AND STAGE_SPLIT23 = 'Stage 3' AND SPLIT_60_70 = 'Age 70+' UNION ALL SELECT '2019' AS "Year", 'Carcinoma and Other' AS "Tumour Type", 'Stage 3' AS "Stage", 'All' AS "Region", 'Female' AS "Sex", 'Age 70+' AS "Age", SUM(statisticofinterest_pancreas) as statistic_of_interest FROM tumour_cohort_linked_pancreas WHERE DIAGNOSISYEAR = '2019' AND MORPH_GROUP = 'Carcinoma and Other' AND STAGE_SPLIT23 = 'Stage 3' AND SPLIT_60_70 = 'Age 70+' AND SEX = 'Female' UNION ALL SELECT '2019' AS "Year", 'Carcinoma and Other' AS "Tumour Type", 'Stage 3' AS "Stage", 'All' AS "Region", 'Male' AS "Sex", 'Age 70+' AS "Age", SUM(statisticofinterest_pancreas) as statistic_of_interest FROM tumour_cohort_linked_pancreas WHERE DIAGNOSISYEAR = '2019' AND MORPH_GROUP = 'Carcinoma and Other' AND STAGE_SPLIT23 = 'Stage 3' AND SPLIT_60_70 = 'Age 70+' AND SEX = 'Male' UNION ALL SELECT '2019' AS "Year", 'Carcinoma and Other' AS "Tumour Type", 'Stage 4' AS "Stage", 'All' AS "Region", 'All' AS "Sex", 'All' AS "Age", SUM(statisticofinterest_pancreas) as statistic_of_interest FROM tumour_cohort_linked_pancreas WHERE DIAGNOSISYEAR = '2019' AND MORPH_GROUP = 'Carcinoma and Other' AND STAGE_SPLIT23 = 'Stage 4' UNION ALL SELECT '2019' AS "Year", 'Carcinoma and Other' AS "Tumour Type", 'Stage 4' AS "Stage", 'All' AS "Region", 'All' AS "Sex", 'Age 00-49' AS "Age", SUM(statisticofinterest_pancreas) as statistic_of_interest FROM tumour_cohort_linked_pancreas WHERE DIAGNOSISYEAR = '2019' AND MORPH_GROUP = 'Carcinoma and Other' AND STAGE_SPLIT23 = 'Stage 4' AND SPLIT_50_TO_80 = 'Age 00-49' UNION ALL SELECT '2019' AS "Year", 'Carcinoma and Other' AS "Tumour Type", 'Stage 4' AS "Stage", 'All' AS "Region", 'All' AS "Sex", 'Age 50-59' AS "Age", SUM(statisticofinterest_pancreas) as statistic_of_interest FROM tumour_cohort_linked_pancreas WHERE DIAGNOSISYEAR = '2019' AND MORPH_GROUP = 'Carcinoma and Other' AND STAGE_SPLIT23 = 'Stage 4' AND SPLIT_50_TO_80 = 'Age 50-59' UNION ALL SELECT '2019' AS "Year", 'Carcinoma and Other' AS "Tumour Type", 'Stage 4' AS "Stage", 'All' AS "Region", 'All' AS "Sex", 'Age 60-69' AS "Age", SUM(statisticofinterest_pancreas) as statistic_of_interest FROM tumour_cohort_linked_pancreas WHERE DIAGNOSISYEAR = '2019' AND MORPH_GROUP = 'Carcinoma and Other' AND STAGE_SPLIT23 = 'Stage 4' AND SPLIT_50_TO_80 = 'Age 60-69' UNION ALL SELECT '2019' AS "Year", 'Carcinoma and Other' AS "Tumour Type", 'Stage 4' AS "Stage", 'London' AS "Region", 'All' AS "Sex", 'Age 60-69' AS "Age", SUM(statisticofinterest_pancreas) as statistic_of_interest FROM tumour_cohort_linked_pancreas WHERE DIAGNOSISYEAR = '2019' AND MORPH_GROUP = 'Carcinoma and Other' AND STAGE_SPLIT23 = 'Stage 4' AND SPLIT_50_TO_80 = 'Age 60-69' AND REGION = 'London' UNION ALL SELECT '2019' AS "Year", 'Carcinoma and Other' AS "Tumour Type", 'Stage 4' AS "Stage", 'Midlands and East of England' AS "Region", 'All' AS "Sex", 'Age 60-69' AS "Age", SUM(statisticofinterest_pancreas) as statistic_of_interest FROM tumour_cohort_linked_pancreas WHERE DIAGNOSISYEAR = '2019' AND MORPH_GROUP = 'Carcinoma and Other' AND STAGE_SPLIT23 = 'Stage 4' AND SPLIT_50_TO_80 = 'Age 60-69' AND REGION = 'Midlands and East of England' UNION ALL SELECT '2019' AS "Year", 'Carcinoma and Other' AS "Tumour Type", 'Stage 4' AS "Stage", 'Midlands and East of England' AS "Region", 'Female' AS "Sex", 'Age 60-69' AS "Age", SUM(statisticofinterest_pancreas) as statistic_of_interest FROM tumour_cohort_linked_pancreas WHERE DIAGNOSISYEAR = '2019' AND MORPH_GROUP = 'Carcinoma and Other' AND STAGE_SPLIT23 = 'Stage 4' AND SPLIT_50_TO_80 = 'Age 60-69' AND REGION = 'Midlands and East of England' AND SEX = 'Female' UNION ALL SELECT '2019' AS "Year", 'Carcinoma and Other' AS "Tumour Type", 'Stage 4' AS "Stage", 'Midlands and East of England' AS "Region", 'Male' AS "Sex", 'Age 60-69' AS "Age", SUM(statisticofinterest_pancreas) as statistic_of_interest FROM tumour_cohort_linked_pancreas WHERE DIAGNOSISYEAR = '2019' AND MORPH_GROUP = 'Carcinoma and Other' AND STAGE_SPLIT23 = 'Stage 4' AND SPLIT_50_TO_80 = 'Age 60-69' AND REGION = 'Midlands and East of England' AND SEX = 'Male' UNION ALL SELECT '2019' AS "Year", 'Carcinoma and Other' AS "Tumour Type", 'Stage 4' AS "Stage", 'North of England' AS "Region", 'All' AS "Sex", 'Age 60-69' AS "Age", SUM(statisticofinterest_pancreas) as statistic_of_interest FROM tumour_cohort_linked_pancreas WHERE DIAGNOSISYEAR = '2019' AND MORPH_GROUP = 'Carcinoma and Other' AND STAGE_SPLIT23 = 'Stage 4' AND SPLIT_50_TO_80 = 'Age 60-69' AND REGION = 'North of England' UNION ALL SELECT '2019' AS "Year", 'Carcinoma and Other' AS "Tumour Type", 'Stage 4' AS "Stage", 'North of England' AS "Region", 'Female' AS "Sex", 'Age 60-69' AS "Age", SUM(statisticofinterest_pancreas) as statistic_of_interest FROM tumour_cohort_linked_pancreas WHERE DIAGNOSISYEAR = '2019' AND MORPH_GROUP = 'Carcinoma and Other' AND STAGE_SPLIT23 = 'Stage 4' AND SPLIT_50_TO_80 = 'Age 60-69' AND REGION = 'North of England' AND SEX = 'Female' UNION ALL SELECT '2019' AS "Year", 'Carcinoma and Other' AS "Tumour Type", 'Stage 4' AS "Stage", 'North of England' AS "Region", 'Male' AS "Sex", 'Age 60-69' AS "Age", SUM(statisticofinterest_pancreas) as statistic_of_interest FROM tumour_cohort_linked_pancreas WHERE DIAGNOSISYEAR = '2019' AND MORPH_GROUP = 'Carcinoma and Other' AND STAGE_SPLIT23 = 'Stage 4' AND SPLIT_50_TO_80 = 'Age 60-69' AND REGION = 'North of England' AND SEX = 'Male' UNION ALL SELECT '2019' AS "Year", 'Carcinoma and Other' AS "Tumour Type", 'Stage 4' AS "Stage", 'South of England' AS "Region", 'All' AS "Sex", 'Age 60-69' AS "Age", SUM(statisticofinterest_pancreas) as statistic_of_interest FROM tumour_cohort_linked_pancreas WHERE DIAGNOSISYEAR = '2019' AND MORPH_GROUP = 'Carcinoma and Other' AND STAGE_SPLIT23 = 'Stage 4' AND SPLIT_50_TO_80 = 'Age 60-69' AND REGION = 'South of England' UNION ALL SELECT '2019' AS "Year", 'Carcinoma and Other' AS "Tumour Type", 'Stage 4' AS "Stage", 'South of England' AS "Region", 'Female' AS "Sex", 'Age 60-69' AS "Age", SUM(statisticofinterest_pancreas) as statistic_of_interest FROM tumour_cohort_linked_pancreas WHERE DIAGNOSISYEAR = '2019' AND MORPH_GROUP = 'Carcinoma and Other' AND STAGE_SPLIT23 = 'Stage 4' AND SPLIT_50_TO_80 = 'Age 60-69' AND REGION = 'South of England' AND SEX = 'Female' UNION ALL SELECT '2019' AS "Year", 'Carcinoma and Other' AS "Tumour Type", 'Stage 4' AS "Stage", 'South of England' AS "Region", 'Male' AS "Sex", 'Age 60-69' AS "Age", SUM(statisticofinterest_pancreas) as statistic_of_interest FROM tumour_cohort_linked_pancreas WHERE DIAGNOSISYEAR = '2019' AND MORPH_GROUP = 'Carcinoma and Other' AND STAGE_SPLIT23 = 'Stage 4' AND SPLIT_50_TO_80 = 'Age 60-69' AND REGION = 'South of England' AND SEX = 'Male' UNION ALL SELECT '2019' AS "Year", 'Carcinoma and Other' AS "Tumour Type", 'Stage 4' AS "Stage", 'All' AS "Region", 'All' AS "Sex", 'Age 70-79' AS "Age", SUM(statisticofinterest_pancreas) as statistic_of_interest FROM tumour_cohort_linked_pancreas WHERE DIAGNOSISYEAR = '2019' AND MORPH_GROUP = 'Carcinoma and Other' AND STAGE_SPLIT23 = 'Stage 4' AND SPLIT_50_TO_80 = 'Age 70-79' UNION ALL SELECT '2019' AS "Year", 'Carcinoma and Other' AS "Tumour Type", 'Stage 4' AS "Stage", 'London' AS "Region", 'All' AS "Sex", 'Age 70-79' AS "Age", SUM(statisticofinterest_pancreas) as statistic_of_interest FROM tumour_cohort_linked_pancreas WHERE DIAGNOSISYEAR = '2019' AND MORPH_GROUP = 'Carcinoma and Other' AND STAGE_SPLIT23 = 'Stage 4' AND SPLIT_50_TO_80 = 'Age 70-79' AND REGION = 'London' UNION ALL SELECT '2019' AS "Year", 'Carcinoma and Other' AS "Tumour Type", 'Stage 4' AS "Stage", 'Midlands and East of England' AS "Region", 'All' AS "Sex", 'Age 70-79' AS "Age", SUM(statisticofinterest_pancreas) as statistic_of_interest FROM tumour_cohort_linked_pancreas WHERE DIAGNOSISYEAR = '2019' AND MORPH_GROUP = 'Carcinoma and Other' AND STAGE_SPLIT23 = 'Stage 4' AND SPLIT_50_TO_80 = 'Age 70-79' AND REGION = 'Midlands and East of England' UNION ALL SELECT '2019' AS "Year", 'Carcinoma and Other' AS "Tumour Type", 'Stage 4' AS "Stage", 'Midlands and East of England' AS "Region", 'Female' AS "Sex", 'Age 70-79' AS "Age", SUM(statisticofinterest_pancreas) as statistic_of_interest FROM tumour_cohort_linked_pancreas WHERE DIAGNOSISYEAR = '2019' AND MORPH_GROUP = 'Carcinoma and Other' AND STAGE_SPLIT23 = 'Stage 4' AND SPLIT_50_TO_80 = 'Age 70-79' AND REGION = 'Midlands and East of England' AND SEX = 'Female' UNION ALL SELECT '2019' AS "Year", 'Carcinoma and Other' AS "Tumour Type", 'Stage 4' AS "Stage", 'Midlands and East of England' AS "Region", 'Male' AS "Sex", 'Age 70-79' AS "Age", SUM(statisticofinterest_pancreas) as statistic_of_interest FROM tumour_cohort_linked_pancreas WHERE DIAGNOSISYEAR = '2019' AND MORPH_GROUP = 'Carcinoma and Other' AND STAGE_SPLIT23 = 'Stage 4' AND SPLIT_50_TO_80 = 'Age 70-79' AND REGION = 'Midlands and East of England' AND SEX = 'Male' UNION ALL SELECT '2019' AS "Year", 'Carcinoma and Other' AS "Tumour Type", 'Stage 4' AS "Stage", 'North of England' AS "Region", 'All' AS "Sex", 'Age 70-79' AS "Age", SUM(statisticofinterest_pancreas) as statistic_of_interest FROM tumour_cohort_linked_pancreas WHERE DIAGNOSISYEAR = '2019' AND MORPH_GROUP = 'Carcinoma and Other' AND STAGE_SPLIT23 = 'Stage 4' AND SPLIT_50_TO_80 = 'Age 70-79' AND REGION = 'North of England' UNION ALL SELECT '2019' AS "Year", 'Carcinoma and Other' AS "Tumour Type", 'Stage 4' AS "Stage", 'North of England' AS "Region", 'Female' AS "Sex", 'Age 70-79' AS "Age", SUM(statisticofinterest_pancreas) as statistic_of_interest FROM tumour_cohort_linked_pancreas WHERE DIAGNOSISYEAR = '2019' AND MORPH_GROUP = 'Carcinoma and Other' AND STAGE_SPLIT23 = 'Stage 4' AND SPLIT_50_TO_80 = 'Age 70-79' AND REGION = 'North of England' AND SEX = 'Female' UNION ALL SELECT '2019' AS "Year", 'Carcinoma and Other' AS "Tumour Type", 'Stage 4' AS "Stage", 'North of England' AS "Region", 'Male' AS "Sex", 'Age 70-79' AS "Age", SUM(statisticofinterest_pancreas) as statistic_of_interest FROM tumour_cohort_linked_pancreas WHERE DIAGNOSISYEAR = '2019' AND MORPH_GROUP = 'Carcinoma and Other' AND STAGE_SPLIT23 = 'Stage 4' AND SPLIT_50_TO_80 = 'Age 70-79' AND REGION = 'North of England' AND SEX = 'Male' UNION ALL SELECT '2019' AS "Year", 'Carcinoma and Other' AS "Tumour Type", 'Stage 4' AS "Stage", 'South of England' AS "Region", 'All' AS "Sex", 'Age 70-79' AS "Age", SUM(statisticofinterest_pancreas) as statistic_of_interest FROM tumour_cohort_linked_pancreas WHERE DIAGNOSISYEAR = '2019' AND MORPH_GROUP = 'Carcinoma and Other' AND STAGE_SPLIT23 = 'Stage 4' AND SPLIT_50_TO_80 = 'Age 70-79' AND REGION = 'South of England' UNION ALL SELECT '2019' AS "Year", 'Carcinoma and Other' AS "Tumour Type", 'Stage 4' AS "Stage", 'South of England' AS "Region", 'Female' AS "Sex", 'Age 70-79' AS "Age", SUM(statisticofinterest_pancreas) as statistic_of_interest FROM tumour_cohort_linked_pancreas WHERE DIAGNOSISYEAR = '2019' AND MORPH_GROUP = 'Carcinoma and Other' AND STAGE_SPLIT23 = 'Stage 4' AND SPLIT_50_TO_80 = 'Age 70-79' AND REGION = 'South of England' AND SEX = 'Female' UNION ALL SELECT '2019' AS "Year", 'Carcinoma and Other' AS "Tumour Type", 'Stage 4' AS "Stage", 'South of England' AS "Region", 'Male' AS "Sex", 'Age 70-79' AS "Age", SUM(statisticofinterest_pancreas) as statistic_of_interest FROM tumour_cohort_linked_pancreas WHERE DIAGNOSISYEAR = '2019' AND MORPH_GROUP = 'Carcinoma and Other' AND STAGE_SPLIT23 = 'Stage 4' AND SPLIT_50_TO_80 = 'Age 70-79' AND REGION = 'South of England' AND SEX = 'Male' UNION ALL SELECT '2019' AS "Year", 'Carcinoma and Other' AS "Tumour Type", 'Stage 4' AS "Stage", 'All' AS "Region", 'All' AS "Sex", 'Age 80+' AS "Age", SUM(statisticofinterest_pancreas) as statistic_of_interest FROM tumour_cohort_linked_pancreas WHERE DIAGNOSISYEAR = '2019' AND MORPH_GROUP = 'Carcinoma and Other' AND STAGE_SPLIT23 = 'Stage 4' AND SPLIT_50_TO_80 = 'Age 80+' UNION ALL SELECT '2019' AS "Year", 'Carcinoma and Other' AS "Tumour Type", 'Stage 4' AS "Stage", 'London' AS "Region", 'All' AS "Sex", 'Age 80+' AS "Age", SUM(statisticofinterest_pancreas) as statistic_of_interest FROM tumour_cohort_linked_pancreas WHERE DIAGNOSISYEAR = '2019' AND MORPH_GROUP = 'Carcinoma and Other' AND STAGE_SPLIT23 = 'Stage 4' AND SPLIT_50_TO_80 = 'Age 80+' AND REGION = 'London' UNION ALL SELECT '2019' AS "Year", 'Carcinoma and Other' AS "Tumour Type", 'Stage 4' AS "Stage", 'Midlands and East of England' AS "Region", 'All' AS "Sex", 'Age 80+' AS "Age", SUM(statisticofinterest_pancreas) as statistic_of_interest FROM tumour_cohort_linked_pancreas WHERE DIAGNOSISYEAR = '2019' AND MORPH_GROUP = 'Carcinoma and Other' AND STAGE_SPLIT23 = 'Stage 4' AND SPLIT_50_TO_80 = 'Age 80+' AND REGION = 'Midlands and East of England' UNION ALL SELECT '2019' AS "Year", 'Carcinoma and Other' AS "Tumour Type", 'Stage 4' AS "Stage", 'Midlands and East of England' AS "Region", 'Female' AS "Sex", 'Age 80+' AS "Age", SUM(statisticofinterest_pancreas) as statistic_of_interest FROM tumour_cohort_linked_pancreas WHERE DIAGNOSISYEAR = '2019' AND MORPH_GROUP = 'Carcinoma and Other' AND STAGE_SPLIT23 = 'Stage 4' AND SPLIT_50_TO_80 = 'Age 80+' AND REGION = 'Midlands and East of England' AND SEX = 'Female' UNION ALL SELECT '2019' AS "Year", 'Carcinoma and Other' AS "Tumour Type", 'Stage 4' AS "Stage", 'Midlands and East of England' AS "Region", 'Male' AS "Sex", 'Age 80+' AS "Age", SUM(statisticofinterest_pancreas) as statistic_of_interest FROM tumour_cohort_linked_pancreas WHERE DIAGNOSISYEAR = '2019' AND MORPH_GROUP = 'Carcinoma and Other' AND STAGE_SPLIT23 = 'Stage 4' AND SPLIT_50_TO_80 = 'Age 80+' AND REGION = 'Midlands and East of England' AND SEX = 'Male' UNION ALL SELECT '2019' AS "Year", 'Carcinoma and Other' AS "Tumour Type", 'Stage 4' AS "Stage", 'North of England' AS "Region", 'All' AS "Sex", 'Age 80+' AS "Age", SUM(statisticofinterest_pancreas) as statistic_of_interest FROM tumour_cohort_linked_pancreas WHERE DIAGNOSISYEAR = '2019' AND MORPH_GROUP = 'Carcinoma and Other' AND STAGE_SPLIT23 = 'Stage 4' AND SPLIT_50_TO_80 = 'Age 80+' AND REGION = 'North of England' UNION ALL SELECT '2019' AS "Year", 'Carcinoma and Other' AS "Tumour Type", 'Stage 4' AS "Stage", 'North of England' AS "Region", 'Female' AS "Sex", 'Age 80+' AS "Age", SUM(statisticofinterest_pancreas) as statistic_of_interest FROM tumour_cohort_linked_pancreas WHERE DIAGNOSISYEAR = '2019' AND MORPH_GROUP = 'Carcinoma and Other' AND STAGE_SPLIT23 = 'Stage 4' AND SPLIT_50_TO_80 = 'Age 80+' AND REGION = 'North of England' AND SEX = 'Female' UNION ALL SELECT '2019' AS "Year", 'Carcinoma and Other' AS "Tumour Type", 'Stage 4' AS "Stage", 'North of England' AS "Region", 'Male' AS "Sex", 'Age 80+' AS "Age", SUM(statisticofinterest_pancreas) as statistic_of_interest FROM tumour_cohort_linked_pancreas WHERE DIAGNOSISYEAR = '2019' AND MORPH_GROUP = 'Carcinoma and Other' AND STAGE_SPLIT23 = 'Stage 4' AND SPLIT_50_TO_80 = 'Age 80+' AND REGION = 'North of England' AND SEX = 'Male' UNION ALL SELECT '2019' AS "Year", 'Carcinoma and Other' AS "Tumour Type", 'Stage 4' AS "Stage", 'South of England' AS "Region", 'All' AS "Sex", 'Age 80+' AS "Age", SUM(statisticofinterest_pancreas) as statistic_of_interest FROM tumour_cohort_linked_pancreas WHERE DIAGNOSISYEAR = '2019' AND MORPH_GROUP = 'Carcinoma and Other' AND STAGE_SPLIT23 = 'Stage 4' AND SPLIT_50_TO_80 = 'Age 80+' AND REGION = 'South of England' UNION ALL SELECT '2019' AS "Year", 'Carcinoma and Other' AS "Tumour Type", 'Stage 4' AS "Stage", 'South of England' AS "Region", 'Female' AS "Sex", 'Age 80+' AS "Age", SUM(statisticofinterest_pancreas) as statistic_of_interest FROM tumour_cohort_linked_pancreas WHERE DIAGNOSISYEAR = '2019' AND MORPH_GROUP = 'Carcinoma and Other' AND STAGE_SPLIT23 = 'Stage 4' AND SPLIT_50_TO_80 = 'Age 80+' AND REGION = 'South of England' AND SEX = 'Female' UNION ALL SELECT '2019' AS "Year", 'Carcinoma and Other' AS "Tumour Type", 'Stage 4' AS "Stage", 'South of England' AS "Region", 'Male' AS "Sex", 'Age 80+' AS "Age", SUM(statisticofinterest_pancreas) as statistic_of_interest FROM tumour_cohort_linked_pancreas WHERE DIAGNOSISYEAR = '2019' AND MORPH_GROUP = 'Carcinoma and Other' AND STAGE_SPLIT23 = 'Stage 4' AND SPLIT_50_TO_80 = 'Age 80+' AND REGION = 'South of England' AND SEX = 'Male' UNION ALL SELECT '2019' AS "Year", 'Carcinoma and Other' AS "Tumour Type", 'Stage unknown' AS "Stage", 'All' AS "Region", 'All' AS "Sex", 'All' AS "Age", SUM(statisticofinterest_pancreas) as statistic_of_interest FROM tumour_cohort_linked_pancreas WHERE DIAGNOSISYEAR = '2019' AND MORPH_GROUP = 'Carcinoma and Other' AND STAGE_SPLIT23 = 'Stage unknown' UNION ALL SELECT '2019' AS "Year", 'Carcinoma and Other' AS "Tumour Type", 'Stage unknown' AS "Stage", 'All' AS "Region", 'All' AS "Sex", 'Age 00-59' AS "Age", SUM(statisticofinterest_pancreas) as statistic_of_interest FROM tumour_cohort_linked_pancreas WHERE DIAGNOSISYEAR = '2019' AND MORPH_GROUP = 'Carcinoma and Other' AND STAGE_SPLIT23 = 'Stage unknown' AND SPLIT_60_TO_80 = 'Age 00-59' UNION ALL SELECT '2019' AS "Year", 'Carcinoma and Other' AS "Tumour Type", 'Stage unknown' AS "Stage", 'All' AS "Region", 'All' AS "Sex", 'Age 60-69' AS "Age", SUM(statisticofinterest_pancreas) as statistic_of_interest FROM tumour_cohort_linked_pancreas WHERE DIAGNOSISYEAR = '2019' AND MORPH_GROUP = 'Carcinoma and Other' AND STAGE_SPLIT23 = 'Stage unknown' AND SPLIT_60_TO_80 = 'Age 60-69' UNION ALL SELECT '2019' AS "Year", 'Carcinoma and Other' AS "Tumour Type", 'Stage unknown' AS "Stage", 'All' AS "Region", 'Female' AS "Sex", 'Age 60-69' AS "Age", SUM(statisticofinterest_pancreas) as statistic_of_interest FROM tumour_cohort_linked_pancreas WHERE DIAGNOSISYEAR = '2019' AND MORPH_GROUP = 'Carcinoma and Other' AND STAGE_SPLIT23 = 'Stage unknown' AND SPLIT_60_TO_80 = 'Age 60-69' AND SEX = 'Female' UNION ALL SELECT '2019' AS "Year", 'Carcinoma and Other' AS "Tumour Type", 'Stage unknown' AS "Stage", 'All' AS "Region", 'Male' AS "Sex", 'Age 60-69' AS "Age", SUM(statisticofinterest_pancreas) as statistic_of_interest FROM tumour_cohort_linked_pancreas WHERE DIAGNOSISYEAR = '2019' AND MORPH_GROUP = 'Carcinoma and Other' AND STAGE_SPLIT23 = 'Stage unknown' AND SPLIT_60_TO_80 = 'Age 60-69' AND SEX = 'Male' UNION ALL SELECT '2019' AS "Year", 'Carcinoma and Other' AS "Tumour Type", 'Stage unknown' AS "Stage", 'All' AS "Region", 'All' AS "Sex", 'Age 70-79' AS "Age", SUM(statisticofinterest_pancreas) as statistic_of_interest FROM tumour_cohort_linked_pancreas WHERE DIAGNOSISYEAR = '2019' AND MORPH_GROUP = 'Carcinoma and Other' AND STAGE_SPLIT23 = 'Stage unknown' AND SPLIT_60_TO_80 = 'Age 70-79' UNION ALL SELECT '2019' AS "Year", 'Carcinoma and Other' AS "Tumour Type", 'Stage unknown' AS "Stage", 'All' AS "Region", 'Female' AS "Sex", 'Age 70-79' AS "Age", SUM(statisticofinterest_pancreas) as statistic_of_interest FROM tumour_cohort_linked_pancreas WHERE DIAGNOSISYEAR = '2019' AND MORPH_GROUP = 'Carcinoma and Other' AND STAGE_SPLIT23 = 'Stage unknown' AND SPLIT_60_TO_80 = 'Age 70-79' AND SEX = 'Female' UNION ALL SELECT '2019' AS "Year", 'Carcinoma and Other' AS "Tumour Type", 'Stage unknown' AS "Stage", 'All' AS "Region", 'Male' AS "Sex", 'Age 70-79' AS "Age", SUM(statisticofinterest_pancreas) as statistic_of_interest FROM tumour_cohort_linked_pancreas WHERE DIAGNOSISYEAR = '2019' AND MORPH_GROUP = 'Carcinoma and Other' AND STAGE_SPLIT23 = 'Stage unknown' AND SPLIT_60_TO_80 = 'Age 70-79' AND SEX = 'Male' UNION ALL SELECT '2019' AS "Year", 'Carcinoma and Other' AS "Tumour Type", 'Stage unknown' AS "Stage", 'All' AS "Region", 'All' AS "Sex", 'Age 80+' AS "Age", SUM(statisticofinterest_pancreas) as statistic_of_interest FROM tumour_cohort_linked_pancreas WHERE DIAGNOSISYEAR = '2019' AND MORPH_GROUP = 'Carcinoma and Other' AND STAGE_SPLIT23 = 'Stage unknown' AND SPLIT_60_TO_80 = 'Age 80+' UNION ALL SELECT '2019' AS "Year", 'Carcinoma and Other' AS "Tumour Type", 'Stage unknown' AS "Stage", 'All' AS "Region", 'Female' AS "Sex", 'Age 80+' AS "Age", SUM(statisticofinterest_pancreas) as statistic_of_interest FROM tumour_cohort_linked_pancreas WHERE DIAGNOSISYEAR = '2019' AND MORPH_GROUP = 'Carcinoma and Other' AND STAGE_SPLIT23 = 'Stage unknown' AND SPLIT_60_TO_80 = 'Age 80+' AND SEX = 'Female' UNION ALL SELECT '2019' AS "Year", 'Carcinoma and Other' AS "Tumour Type", 'Stage unknown' AS "Stage", 'All' AS "Region", 'Male' AS "Sex", 'Age 80+' AS "Age", SUM(statisticofinterest_pancreas) as statistic_of_interest FROM tumour_cohort_linked_pancreas WHERE DIAGNOSISYEAR = '2019' AND MORPH_GROUP = 'Carcinoma and Other' AND STAGE_SPLIT23 = 'Stage unknown' AND SPLIT_60_TO_80 = 'Age 80+' AND SEX = 'Male' UNION ALL SELECT '2019' AS "Year", 'Neuroendocrine' AS "Tumour Type", 'All' AS "Stage", 'All' AS "Region", 'All' AS "Sex", 'All' AS "Age", SUM(statisticofinterest_pancreas) as statistic_of_interest FROM tumour_cohort_linked_pancreas WHERE DIAGNOSISYEAR = '2019' AND MORPH_GROUP = 'Neuroendocrine' UNION ALL SELECT '2019' AS "Year", 'Neuroendocrine' AS "Tumour Type", 'All' AS "Stage", 'All' AS "Region", 'All' AS "Sex", 'Age 00-49' AS "Age", SUM(statisticofinterest_pancreas) as statistic_of_interest FROM tumour_cohort_linked_pancreas WHERE DIAGNOSISYEAR = '2019' AND MORPH_GROUP = 'Neuroendocrine' AND SPLIT_50_TO_70 = 'Age 00-49' UNION ALL SELECT '2019' AS "Year", 'Neuroendocrine' AS "Tumour Type", 'All' AS "Stage", 'All' AS "Region", 'All' AS "Sex", 'Age 50-59' AS "Age", SUM(statisticofinterest_pancreas) as statistic_of_interest FROM tumour_cohort_linked_pancreas WHERE DIAGNOSISYEAR = '2019' AND MORPH_GROUP = 'Neuroendocrine' AND SPLIT_50_TO_70 = 'Age 50-59' UNION ALL SELECT '2019' AS "Year", 'Neuroendocrine' AS "Tumour Type", 'All' AS "Stage", 'All' AS "Region", 'All' AS "Sex", 'Age 60-69' AS "Age", SUM(statisticofinterest_pancreas) as statistic_of_interest FROM tumour_cohort_linked_pancreas WHERE DIAGNOSISYEAR = '2019' AND MORPH_GROUP = 'Neuroendocrine' AND SPLIT_50_TO_70 = 'Age 60-69' UNION ALL SELECT '2019' AS "Year", 'Neuroendocrine' AS "Tumour Type", 'All' AS "Stage", 'All' AS "Region", 'All' AS "Sex", 'Age 70+' AS "Age", SUM(statisticofinterest_pancreas) as statistic_of_interest FROM tumour_cohort_linked_pancreas WHERE DIAGNOSISYEAR = '2019' AND MORPH_GROUP = 'Neuroendocrine' AND SPLIT_50_TO_70 = 'Age 70+' UNION ALL SELECT '2013-2015' AS "Year", 'All' AS "Tumour Type", 'All' AS "Stage", 'All' AS "Region", 'All' AS "Sex", 'All' AS "Age", SUM(statisticofinterest_pancreas) as statistic_of_interest FROM tumour_cohort_linked_pancreas WHERE DIAGNOSISYEAR BETWEEN 2013 AND 2015 UNION ALL SELECT '2013-2015' AS "Year", 'Carcinoma and Other' AS "Tumour Type", 'All' AS "Stage", 'All' AS "Region", 'All' AS "Sex", 'All' AS "Age", SUM(statisticofinterest_pancreas) as statistic_of_interest FROM tumour_cohort_linked_pancreas WHERE DIAGNOSISYEAR BETWEEN 2013 AND 2015 AND MORPH_GROUP = 'Carcinoma and Other' UNION ALL SELECT '2013-2015' AS "Year", 'Carcinoma and Other' AS "Tumour Type", 'Stage 1-2' AS "Stage", 'All' AS "Region", 'All' AS "Sex", 'All' AS "Age", SUM(statisticofinterest_pancreas) as statistic_of_interest FROM tumour_cohort_linked_pancreas WHERE DIAGNOSISYEAR BETWEEN 2013 AND 2015 AND MORPH_GROUP = 'Carcinoma and Other' AND STAGE_SPLIT23 = 'Stage 1-2' UNION ALL SELECT '2013-2015' AS "Year", 'Carcinoma and Other' AS "Tumour Type", 'Stage 1-2' AS "Stage", 'All' AS "Region", 'All' AS "Sex", 'Age 00-59' AS "Age", SUM(statisticofinterest_pancreas) as statistic_of_interest FROM tumour_cohort_linked_pancreas WHERE DIAGNOSISYEAR BETWEEN 2013 AND 2015 AND MORPH_GROUP = 'Carcinoma and Other' AND STAGE_SPLIT23 = 'Stage 1-2' AND SPLIT_60_TO_80 = 'Age 00-59' UNION ALL SELECT '2013-2015' AS "Year", 'Carcinoma and Other' AS "Tumour Type", 'Stage 1-2' AS "Stage", 'All' AS "Region", 'All' AS "Sex", 'Age 60-69' AS "Age", SUM(statisticofinterest_pancreas) as statistic_of_interest FROM tumour_cohort_linked_pancreas WHERE DIAGNOSISYEAR BETWEEN 2013 AND 2015 AND MORPH_GROUP = 'Carcinoma and Other' AND STAGE_SPLIT23 = 'Stage 1-2' AND SPLIT_60_TO_80 = 'Age 60-69' UNION ALL SELECT '2013-2015' AS "Year", 'Carcinoma and Other' AS "Tumour Type", 'Stage 1-2' AS "Stage", 'All' AS "Region", 'Female' AS "Sex", 'Age 60-69' AS "Age", SUM(statisticofinterest_pancreas) as statistic_of_interest FROM tumour_cohort_linked_pancreas WHERE DIAGNOSISYEAR BETWEEN 2013 AND 2015 AND MORPH_GROUP = 'Carcinoma and Other' AND STAGE_SPLIT23 = 'Stage 1-2' AND SPLIT_60_TO_80 = 'Age 60-69' AND SEX = 'Female' UNION ALL SELECT '2013-2015' AS "Year", 'Carcinoma and Other' AS "Tumour Type", 'Stage 1-2' AS "Stage", 'All' AS "Region", 'Male' AS "Sex", 'Age 60-69' AS "Age", SUM(statisticofinterest_pancreas) as statistic_of_interest FROM tumour_cohort_linked_pancreas WHERE DIAGNOSISYEAR BETWEEN 2013 AND 2015 AND MORPH_GROUP = 'Carcinoma and Other' AND STAGE_SPLIT23 = 'Stage 1-2' AND SPLIT_60_TO_80 = 'Age 60-69' AND SEX = 'Male' UNION ALL SELECT '2013-2015' AS "Year", 'Carcinoma and Other' AS "Tumour Type", 'Stage 1-2' AS "Stage", 'All' AS "Region", 'All' AS "Sex", 'Age 70-79' AS "Age", SUM(statisticofinterest_pancreas) as statistic_of_interest FROM tumour_cohort_linked_pancreas WHERE DIAGNOSISYEAR BETWEEN 2013 AND 2015 AND MORPH_GROUP = 'Carcinoma and Other' AND STAGE_SPLIT23 = 'Stage 1-2' AND SPLIT_60_TO_80 = 'Age 70-79' UNION ALL SELECT '2013-2015' AS "Year", 'Carcinoma and Other' AS "Tumour Type", 'Stage 1-2' AS "Stage", 'All' AS "Region", 'Female' AS "Sex", 'Age 70-79' AS "Age", SUM(statisticofinterest_pancreas) as statistic_of_interest FROM tumour_cohort_linked_pancreas WHERE DIAGNOSISYEAR BETWEEN 2013 AND 2015 AND MORPH_GROUP = 'Carcinoma and Other' AND STAGE_SPLIT23 = 'Stage 1-2' AND SPLIT_60_TO_80 = 'Age 70-79' AND SEX = 'Female' UNION ALL SELECT '2013-2015' AS "Year", 'Carcinoma and Other' AS "Tumour Type", 'Stage 1-2' AS "Stage", 'All' AS "Region", 'Male' AS "Sex", 'Age 70-79' AS "Age", SUM(statisticofinterest_pancreas) as statistic_of_interest FROM tumour_cohort_linked_pancreas WHERE DIAGNOSISYEAR BETWEEN 2013 AND 2015 AND MORPH_GROUP = 'Carcinoma and Other' AND STAGE_SPLIT23 = 'Stage 1-2' AND SPLIT_60_TO_80 = 'Age 70-79' AND SEX = 'Male' UNION ALL SELECT '2013-2015' AS "Year", 'Carcinoma and Other' AS "Tumour Type", 'Stage 1-2' AS "Stage", 'All' AS "Region", 'All' AS "Sex", 'Age 80+' AS "Age", SUM(statisticofinterest_pancreas) as statistic_of_interest FROM tumour_cohort_linked_pancreas WHERE DIAGNOSISYEAR BETWEEN 2013 AND 2015 AND MORPH_GROUP = 'Carcinoma and Other' AND STAGE_SPLIT23 = 'Stage 1-2' AND SPLIT_60_TO_80 = 'Age 80+' UNION ALL SELECT '2013-2015' AS "Year", 'Carcinoma and Other' AS "Tumour Type", 'Stage 1-2' AS "Stage", 'All' AS "Region", 'Female' AS "Sex", 'Age 80+' AS "Age", SUM(statisticofinterest_pancreas) as statistic_of_interest FROM tumour_cohort_linked_pancreas WHERE DIAGNOSISYEAR BETWEEN 2013 AND 2015 AND MORPH_GROUP = 'Carcinoma and Other' AND STAGE_SPLIT23 = 'Stage 1-2' AND SPLIT_60_TO_80 = 'Age 80+' AND SEX = 'Female' UNION ALL SELECT '2013-2015' AS "Year", 'Carcinoma and Other' AS "Tumour Type", 'Stage 1-2' AS "Stage", 'All' AS "Region", 'Male' AS "Sex", 'Age 80+' AS "Age", SUM(statisticofinterest_pancreas) as statistic_of_interest FROM tumour_cohort_linked_pancreas WHERE DIAGNOSISYEAR BETWEEN 2013 AND 2015 AND MORPH_GROUP = 'Carcinoma and Other' AND STAGE_SPLIT23 = 'Stage 1-2' AND SPLIT_60_TO_80 = 'Age 80+' AND SEX = 'Male' UNION ALL SELECT '2013-2015' AS "Year", 'Carcinoma and Other' AS "Tumour Type", 'Stage 3' AS "Stage", 'All' AS "Region", 'All' AS "Sex", 'All' AS "Age", SUM(statisticofinterest_pancreas) as statistic_of_interest FROM tumour_cohort_linked_pancreas WHERE DIAGNOSISYEAR BETWEEN 2013 AND 2015 AND MORPH_GROUP = 'Carcinoma and Other' AND STAGE_SPLIT23 = 'Stage 3' UNION ALL SELECT '2013-2015' AS "Year", 'Carcinoma and Other' AS "Tumour Type", 'Stage 3' AS "Stage", 'All' AS "Region", 'All' AS "Sex", 'Age 00-59' AS "Age", SUM(statisticofinterest_pancreas) as statistic_of_interest FROM tumour_cohort_linked_pancreas WHERE DIAGNOSISYEAR BETWEEN 2013 AND 2015 AND MORPH_GROUP = 'Carcinoma and Other' AND STAGE_SPLIT23 = 'Stage 3' AND SPLIT_60_70 = 'Age 00-59' UNION ALL SELECT '2013-2015' AS "Year", 'Carcinoma and Other' AS "Tumour Type", 'Stage 3' AS "Stage", 'All' AS "Region", 'All' AS "Sex", 'Age 60-69' AS "Age", SUM(statisticofinterest_pancreas) as statistic_of_interest FROM tumour_cohort_linked_pancreas WHERE DIAGNOSISYEAR BETWEEN 2013 AND 2015 AND MORPH_GROUP = 'Carcinoma and Other' AND STAGE_SPLIT23 = 'Stage 3' AND SPLIT_60_70 = 'Age 60-69' UNION ALL SELECT '2013-2015' AS "Year", 'Carcinoma and Other' AS "Tumour Type", 'Stage 3' AS "Stage", 'All' AS "Region", 'All' AS "Sex", 'Age 70+' AS "Age", SUM(statisticofinterest_pancreas) as statistic_of_interest FROM tumour_cohort_linked_pancreas WHERE DIAGNOSISYEAR BETWEEN 2013 AND 2015 AND MORPH_GROUP = 'Carcinoma and Other' AND STAGE_SPLIT23 = 'Stage 3' AND SPLIT_60_70 = 'Age 70+' UNION ALL SELECT '2013-2015' AS "Year", 'Carcinoma and Other' AS "Tumour Type", 'Stage 3' AS "Stage", 'All' AS "Region", 'Female' AS "Sex", 'Age 70+' AS "Age", SUM(statisticofinterest_pancreas) as statistic_of_interest FROM tumour_cohort_linked_pancreas WHERE DIAGNOSISYEAR BETWEEN 2013 AND 2015 AND MORPH_GROUP = 'Carcinoma and Other' AND STAGE_SPLIT23 = 'Stage 3' AND SPLIT_60_70 = 'Age 70+' AND SEX = 'Female' UNION ALL SELECT '2013-2015' AS "Year", 'Carcinoma and Other' AS "Tumour Type", 'Stage 3' AS "Stage", 'All' AS "Region", 'Male' AS "Sex", 'Age 70+' AS "Age", SUM(statisticofinterest_pancreas) as statistic_of_interest FROM tumour_cohort_linked_pancreas WHERE DIAGNOSISYEAR BETWEEN 2013 AND 2015 AND MORPH_GROUP = 'Carcinoma and Other' AND STAGE_SPLIT23 = 'Stage 3' AND SPLIT_60_70 = 'Age 70+' AND SEX = 'Male' UNION ALL SELECT '2013-2015' AS "Year", 'Carcinoma and Other' AS "Tumour Type", 'Stage 4' AS "Stage", 'All' AS "Region", 'All' AS "Sex", 'All' AS "Age", SUM(statisticofinterest_pancreas) as statistic_of_interest FROM tumour_cohort_linked_pancreas WHERE DIAGNOSISYEAR BETWEEN 2013 AND 2015 AND MORPH_GROUP = 'Carcinoma and Other' AND STAGE_SPLIT23 = 'Stage 4' UNION ALL SELECT '2013-2015' AS "Year", 'Carcinoma and Other' AS "Tumour Type", 'Stage 4' AS "Stage", 'All' AS "Region", 'All' AS "Sex", 'Age 00-49' AS "Age", SUM(statisticofinterest_pancreas) as statistic_of_interest FROM tumour_cohort_linked_pancreas WHERE DIAGNOSISYEAR BETWEEN 2013 AND 2015 AND MORPH_GROUP = 'Carcinoma and Other' AND STAGE_SPLIT23 = 'Stage 4' AND SPLIT_50_TO_80 = 'Age 00-49' UNION ALL SELECT '2013-2015' AS "Year", 'Carcinoma and Other' AS "Tumour Type", 'Stage 4' AS "Stage", 'All' AS "Region", 'All' AS "Sex", 'Age 50-59' AS "Age", SUM(statisticofinterest_pancreas) as statistic_of_interest FROM tumour_cohort_linked_pancreas WHERE DIAGNOSISYEAR BETWEEN 2013 AND 2015 AND MORPH_GROUP = 'Carcinoma and Other' AND STAGE_SPLIT23 = 'Stage 4' AND SPLIT_50_TO_80 = 'Age 50-59' UNION ALL SELECT '2013-2015' AS "Year", 'Carcinoma and Other' AS "Tumour Type", 'Stage 4' AS "Stage", 'All' AS "Region", 'All' AS "Sex", 'Age 60-69' AS "Age", SUM(statisticofinterest_pancreas) as statistic_of_interest FROM tumour_cohort_linked_pancreas WHERE DIAGNOSISYEAR BETWEEN 2013 AND 2015 AND MORPH_GROUP = 'Carcinoma and Other' AND STAGE_SPLIT23 = 'Stage 4' AND SPLIT_50_TO_80 = 'Age 60-69' UNION ALL SELECT '2013-2015' AS "Year", 'Carcinoma and Other' AS "Tumour Type", 'Stage 4' AS "Stage", 'London' AS "Region", 'All' AS "Sex", 'Age 60-69' AS "Age", SUM(statisticofinterest_pancreas) as statistic_of_interest FROM tumour_cohort_linked_pancreas WHERE DIAGNOSISYEAR BETWEEN 2013 AND 2015 AND MORPH_GROUP = 'Carcinoma and Other' AND STAGE_SPLIT23 = 'Stage 4' AND SPLIT_50_TO_80 = 'Age 60-69' AND REGION = 'London' UNION ALL SELECT '2013-2015' AS "Year", 'Carcinoma and Other' AS "Tumour Type", 'Stage 4' AS "Stage", 'Midlands and East of England' AS "Region", 'All' AS "Sex", 'Age 60-69' AS "Age", SUM(statisticofinterest_pancreas) as statistic_of_interest FROM tumour_cohort_linked_pancreas WHERE DIAGNOSISYEAR BETWEEN 2013 AND 2015 AND MORPH_GROUP = 'Carcinoma and Other' AND STAGE_SPLIT23 = 'Stage 4' AND SPLIT_50_TO_80 = 'Age 60-69' AND REGION = 'Midlands and East of England' UNION ALL SELECT '2013-2015' AS "Year", 'Carcinoma and Other' AS "Tumour Type", 'Stage 4' AS "Stage", 'Midlands and East of England' AS "Region", 'Female' AS "Sex", 'Age 60-69' AS "Age", SUM(statisticofinterest_pancreas) as statistic_of_interest FROM tumour_cohort_linked_pancreas WHERE DIAGNOSISYEAR BETWEEN 2013 AND 2015 AND MORPH_GROUP = 'Carcinoma and Other' AND STAGE_SPLIT23 = 'Stage 4' AND SPLIT_50_TO_80 = 'Age 60-69' AND REGION = 'Midlands and East of England' AND SEX = 'Female' UNION ALL SELECT '2013-2015' AS "Year", 'Carcinoma and Other' AS "Tumour Type", 'Stage 4' AS "Stage", 'Midlands and East of England' AS "Region", 'Male' AS "Sex", 'Age 60-69' AS "Age", SUM(statisticofinterest_pancreas) as statistic_of_interest FROM tumour_cohort_linked_pancreas WHERE DIAGNOSISYEAR BETWEEN 2013 AND 2015 AND MORPH_GROUP = 'Carcinoma and Other' AND STAGE_SPLIT23 = 'Stage 4' AND SPLIT_50_TO_80 = 'Age 60-69' AND REGION = 'Midlands and East of England' AND SEX = 'Male' UNION ALL SELECT '2013-2015' AS "Year", 'Carcinoma and Other' AS "Tumour Type", 'Stage 4' AS "Stage", 'North of England' AS "Region", 'All' AS "Sex", 'Age 60-69' AS "Age", SUM(statisticofinterest_pancreas) as statistic_of_interest FROM tumour_cohort_linked_pancreas WHERE DIAGNOSISYEAR BETWEEN 2013 AND 2015 AND MORPH_GROUP = 'Carcinoma and Other' AND STAGE_SPLIT23 = 'Stage 4' AND SPLIT_50_TO_80 = 'Age 60-69' AND REGION = 'North of England' UNION ALL SELECT '2013-2015' AS "Year", 'Carcinoma and Other' AS "Tumour Type", 'Stage 4' AS "Stage", 'North of England' AS "Region", 'Female' AS "Sex", 'Age 60-69' AS "Age", SUM(statisticofinterest_pancreas) as statistic_of_interest FROM tumour_cohort_linked_pancreas WHERE DIAGNOSISYEAR BETWEEN 2013 AND 2015 AND MORPH_GROUP = 'Carcinoma and Other' AND STAGE_SPLIT23 = 'Stage 4' AND SPLIT_50_TO_80 = 'Age 60-69' AND REGION = 'North of England' AND SEX = 'Female' UNION ALL SELECT '2013-2015' AS "Year", 'Carcinoma and Other' AS "Tumour Type", 'Stage 4' AS "Stage", 'North of England' AS "Region", 'Male' AS "Sex", 'Age 60-69' AS "Age", SUM(statisticofinterest_pancreas) as statistic_of_interest FROM tumour_cohort_linked_pancreas WHERE DIAGNOSISYEAR BETWEEN 2013 AND 2015 AND MORPH_GROUP = 'Carcinoma and Other' AND STAGE_SPLIT23 = 'Stage 4' AND SPLIT_50_TO_80 = 'Age 60-69' AND REGION = 'North of England' AND SEX = 'Male' UNION ALL SELECT '2013-2015' AS "Year", 'Carcinoma and Other' AS "Tumour Type", 'Stage 4' AS "Stage", 'South of England' AS "Region", 'All' AS "Sex", 'Age 60-69' AS "Age", SUM(statisticofinterest_pancreas) as statistic_of_interest FROM tumour_cohort_linked_pancreas WHERE DIAGNOSISYEAR BETWEEN 2013 AND 2015 AND MORPH_GROUP = 'Carcinoma and Other' AND STAGE_SPLIT23 = 'Stage 4' AND SPLIT_50_TO_80 = 'Age 60-69' AND REGION = 'South of England' UNION ALL SELECT '2013-2015' AS "Year", 'Carcinoma and Other' AS "Tumour Type", 'Stage 4' AS "Stage", 'South of England' AS "Region", 'Female' AS "Sex", 'Age 60-69' AS "Age", SUM(statisticofinterest_pancreas) as statistic_of_interest FROM tumour_cohort_linked_pancreas WHERE DIAGNOSISYEAR BETWEEN 2013 AND 2015 AND MORPH_GROUP = 'Carcinoma and Other' AND STAGE_SPLIT23 = 'Stage 4' AND SPLIT_50_TO_80 = 'Age 60-69' AND REGION = 'South of England' AND SEX = 'Female' UNION ALL SELECT '2013-2015' AS "Year", 'Carcinoma and Other' AS "Tumour Type", 'Stage 4' AS "Stage", 'South of England' AS "Region", 'Male' AS "Sex", 'Age 60-69' AS "Age", SUM(statisticofinterest_pancreas) as statistic_of_interest FROM tumour_cohort_linked_pancreas WHERE DIAGNOSISYEAR BETWEEN 2013 AND 2015 AND MORPH_GROUP = 'Carcinoma and Other' AND STAGE_SPLIT23 = 'Stage 4' AND SPLIT_50_TO_80 = 'Age 60-69' AND REGION = 'South of England' AND SEX = 'Male' UNION ALL SELECT '2013-2015' AS "Year", 'Carcinoma and Other' AS "Tumour Type", 'Stage 4' AS "Stage", 'All' AS "Region", 'All' AS "Sex", 'Age 70-79' AS "Age", SUM(statisticofinterest_pancreas) as statistic_of_interest FROM tumour_cohort_linked_pancreas WHERE DIAGNOSISYEAR BETWEEN 2013 AND 2015 AND MORPH_GROUP = 'Carcinoma and Other' AND STAGE_SPLIT23 = 'Stage 4' AND SPLIT_50_TO_80 = 'Age 70-79' UNION ALL SELECT '2013-2015' AS "Year", 'Carcinoma and Other' AS "Tumour Type", 'Stage 4' AS "Stage", 'London' AS "Region", 'All' AS "Sex", 'Age 70-79' AS "Age", SUM(statisticofinterest_pancreas) as statistic_of_interest FROM tumour_cohort_linked_pancreas WHERE DIAGNOSISYEAR BETWEEN 2013 AND 2015 AND MORPH_GROUP = 'Carcinoma and Other' AND STAGE_SPLIT23 = 'Stage 4' AND SPLIT_50_TO_80 = 'Age 70-79' AND REGION = 'London' UNION ALL SELECT '2013-2015' AS "Year", 'Carcinoma and Other' AS "Tumour Type", 'Stage 4' AS "Stage", 'Midlands and East of England' AS "Region", 'All' AS "Sex", 'Age 70-79' AS "Age", SUM(statisticofinterest_pancreas) as statistic_of_interest FROM tumour_cohort_linked_pancreas WHERE DIAGNOSISYEAR BETWEEN 2013 AND 2015 AND MORPH_GROUP = 'Carcinoma and Other' AND STAGE_SPLIT23 = 'Stage 4' AND SPLIT_50_TO_80 = 'Age 70-79' AND REGION = 'Midlands and East of England' UNION ALL SELECT '2013-2015' AS "Year", 'Carcinoma and Other' AS "Tumour Type", 'Stage 4' AS "Stage", 'Midlands and East of England' AS "Region", 'Female' AS "Sex", 'Age 70-79' AS "Age", SUM(statisticofinterest_pancreas) as statistic_of_interest FROM tumour_cohort_linked_pancreas WHERE DIAGNOSISYEAR BETWEEN 2013 AND 2015 AND MORPH_GROUP = 'Carcinoma and Other' AND STAGE_SPLIT23 = 'Stage 4' AND SPLIT_50_TO_80 = 'Age 70-79' AND REGION = 'Midlands and East of England' AND SEX = 'Female' UNION ALL SELECT '2013-2015' AS "Year", 'Carcinoma and Other' AS "Tumour Type", 'Stage 4' AS "Stage", 'Midlands and East of England' AS "Region", 'Male' AS "Sex", 'Age 70-79' AS "Age", SUM(statisticofinterest_pancreas) as statistic_of_interest FROM tumour_cohort_linked_pancreas WHERE DIAGNOSISYEAR BETWEEN 2013 AND 2015 AND MORPH_GROUP = 'Carcinoma and Other' AND STAGE_SPLIT23 = 'Stage 4' AND SPLIT_50_TO_80 = 'Age 70-79' AND REGION = 'Midlands and East of England' AND SEX = 'Male' UNION ALL SELECT '2013-2015' AS "Year", 'Carcinoma and Other' AS "Tumour Type", 'Stage 4' AS "Stage", 'North of England' AS "Region", 'All' AS "Sex", 'Age 70-79' AS "Age", SUM(statisticofinterest_pancreas) as statistic_of_interest FROM tumour_cohort_linked_pancreas WHERE DIAGNOSISYEAR BETWEEN 2013 AND 2015 AND MORPH_GROUP = 'Carcinoma and Other' AND STAGE_SPLIT23 = 'Stage 4' AND SPLIT_50_TO_80 = 'Age 70-79' AND REGION = 'North of England' UNION ALL SELECT '2013-2015' AS "Year", 'Carcinoma and Other' AS "Tumour Type", 'Stage 4' AS "Stage", 'North of England' AS "Region", 'Female' AS "Sex", 'Age 70-79' AS "Age", SUM(statisticofinterest_pancreas) as statistic_of_interest FROM tumour_cohort_linked_pancreas WHERE DIAGNOSISYEAR BETWEEN 2013 AND 2015 AND MORPH_GROUP = 'Carcinoma and Other' AND STAGE_SPLIT23 = 'Stage 4' AND SPLIT_50_TO_80 = 'Age 70-79' AND REGION = 'North of England' AND SEX = 'Female' UNION ALL SELECT '2013-2015' AS "Year", 'Carcinoma and Other' AS "Tumour Type", 'Stage 4' AS "Stage", 'North of England' AS "Region", 'Male' AS "Sex", 'Age 70-79' AS "Age", SUM(statisticofinterest_pancreas) as statistic_of_interest FROM tumour_cohort_linked_pancreas WHERE DIAGNOSISYEAR BETWEEN 2013 AND 2015 AND MORPH_GROUP = 'Carcinoma and Other' AND STAGE_SPLIT23 = 'Stage 4' AND SPLIT_50_TO_80 = 'Age 70-79' AND REGION = 'North of England' AND SEX = 'Male' UNION ALL SELECT '2013-2015' AS "Year", 'Carcinoma and Other' AS "Tumour Type", 'Stage 4' AS "Stage", 'South of England' AS "Region", 'All' AS "Sex", 'Age 70-79' AS "Age", SUM(statisticofinterest_pancreas) as statistic_of_interest FROM tumour_cohort_linked_pancreas WHERE DIAGNOSISYEAR BETWEEN 2013 AND 2015 AND MORPH_GROUP = 'Carcinoma and Other' AND STAGE_SPLIT23 = 'Stage 4' AND SPLIT_50_TO_80 = 'Age 70-79' AND REGION = 'South of England' UNION ALL SELECT '2013-2015' AS "Year", 'Carcinoma and Other' AS "Tumour Type", 'Stage 4' AS "Stage", 'South of England' AS "Region", 'Female' AS "Sex", 'Age 70-79' AS "Age", SUM(statisticofinterest_pancreas) as statistic_of_interest FROM tumour_cohort_linked_pancreas WHERE DIAGNOSISYEAR BETWEEN 2013 AND 2015 AND MORPH_GROUP = 'Carcinoma and Other' AND STAGE_SPLIT23 = 'Stage 4' AND SPLIT_50_TO_80 = 'Age 70-79' AND REGION = 'South of England' AND SEX = 'Female' UNION ALL SELECT '2013-2015' AS "Year", 'Carcinoma and Other' AS "Tumour Type", 'Stage 4' AS "Stage", 'South of England' AS "Region", 'Male' AS "Sex", 'Age 70-79' AS "Age", SUM(statisticofinterest_pancreas) as statistic_of_interest FROM tumour_cohort_linked_pancreas WHERE DIAGNOSISYEAR BETWEEN 2013 AND 2015 AND MORPH_GROUP = 'Carcinoma and Other' AND STAGE_SPLIT23 = 'Stage 4' AND SPLIT_50_TO_80 = 'Age 70-79' AND REGION = 'South of England' AND SEX = 'Male' UNION ALL SELECT '2013-2015' AS "Year", 'Carcinoma and Other' AS "Tumour Type", 'Stage 4' AS "Stage", 'All' AS "Region", 'All' AS "Sex", 'Age 80+' AS "Age", SUM(statisticofinterest_pancreas) as statistic_of_interest FROM tumour_cohort_linked_pancreas WHERE DIAGNOSISYEAR BETWEEN 2013 AND 2015 AND MORPH_GROUP = 'Carcinoma and Other' AND STAGE_SPLIT23 = 'Stage 4' AND SPLIT_50_TO_80 = 'Age 80+' UNION ALL SELECT '2013-2015' AS "Year", 'Carcinoma and Other' AS "Tumour Type", 'Stage 4' AS "Stage", 'London' AS "Region", 'All' AS "Sex", 'Age 80+' AS "Age", SUM(statisticofinterest_pancreas) as statistic_of_interest FROM tumour_cohort_linked_pancreas WHERE DIAGNOSISYEAR BETWEEN 2013 AND 2015 AND MORPH_GROUP = 'Carcinoma and Other' AND STAGE_SPLIT23 = 'Stage 4' AND SPLIT_50_TO_80 = 'Age 80+' AND REGION = 'London' UNION ALL SELECT '2013-2015' AS "Year", 'Carcinoma and Other' AS "Tumour Type", 'Stage 4' AS "Stage", 'Midlands and East of England' AS "Region", 'All' AS "Sex", 'Age 80+' AS "Age", SUM(statisticofinterest_pancreas) as statistic_of_interest FROM tumour_cohort_linked_pancreas WHERE DIAGNOSISYEAR BETWEEN 2013 AND 2015 AND MORPH_GROUP = 'Carcinoma and Other' AND STAGE_SPLIT23 = 'Stage 4' AND SPLIT_50_TO_80 = 'Age 80+' AND REGION = 'Midlands and East of England' UNION ALL SELECT '2013-2015' AS "Year", 'Carcinoma and Other' AS "Tumour Type", 'Stage 4' AS "Stage", 'Midlands and East of England' AS "Region", 'Female' AS "Sex", 'Age 80+' AS "Age", SUM(statisticofinterest_pancreas) as statistic_of_interest FROM tumour_cohort_linked_pancreas WHERE DIAGNOSISYEAR BETWEEN 2013 AND 2015 AND MORPH_GROUP = 'Carcinoma and Other' AND STAGE_SPLIT23 = 'Stage 4' AND SPLIT_50_TO_80 = 'Age 80+' AND REGION = 'Midlands and East of England' AND SEX = 'Female' UNION ALL SELECT '2013-2015' AS "Year", 'Carcinoma and Other' AS "Tumour Type", 'Stage 4' AS "Stage", 'Midlands and East of England' AS "Region", 'Male' AS "Sex", 'Age 80+' AS "Age", SUM(statisticofinterest_pancreas) as statistic_of_interest FROM tumour_cohort_linked_pancreas WHERE DIAGNOSISYEAR BETWEEN 2013 AND 2015 AND MORPH_GROUP = 'Carcinoma and Other' AND STAGE_SPLIT23 = 'Stage 4' AND SPLIT_50_TO_80 = 'Age 80+' AND REGION = 'Midlands and East of England' AND SEX = 'Male' UNION ALL SELECT '2013-2015' AS "Year", 'Carcinoma and Other' AS "Tumour Type", 'Stage 4' AS "Stage", 'North of England' AS "Region", 'All' AS "Sex", 'Age 80+' AS "Age", SUM(statisticofinterest_pancreas) as statistic_of_interest FROM tumour_cohort_linked_pancreas WHERE DIAGNOSISYEAR BETWEEN 2013 AND 2015 AND MORPH_GROUP = 'Carcinoma and Other' AND STAGE_SPLIT23 = 'Stage 4' AND SPLIT_50_TO_80 = 'Age 80+' AND REGION = 'North of England' UNION ALL SELECT '2013-2015' AS "Year", 'Carcinoma and Other' AS "Tumour Type", 'Stage 4' AS "Stage", 'North of England' AS "Region", 'Female' AS "Sex", 'Age 80+' AS "Age", SUM(statisticofinterest_pancreas) as statistic_of_interest FROM tumour_cohort_linked_pancreas WHERE DIAGNOSISYEAR BETWEEN 2013 AND 2015 AND MORPH_GROUP = 'Carcinoma and Other' AND STAGE_SPLIT23 = 'Stage 4' AND SPLIT_50_TO_80 = 'Age 80+' AND REGION = 'North of England' AND SEX = 'Female' UNION ALL SELECT '2013-2015' AS "Year", 'Carcinoma and Other' AS "Tumour Type", 'Stage 4' AS "Stage", 'North of England' AS "Region", 'Male' AS "Sex", 'Age 80+' AS "Age", SUM(statisticofinterest_pancreas) as statistic_of_interest FROM tumour_cohort_linked_pancreas WHERE DIAGNOSISYEAR BETWEEN 2013 AND 2015 AND MORPH_GROUP = 'Carcinoma and Other' AND STAGE_SPLIT23 = 'Stage 4' AND SPLIT_50_TO_80 = 'Age 80+' AND REGION = 'North of England' AND SEX = 'Male' UNION ALL SELECT '2013-2015' AS "Year", 'Carcinoma and Other' AS "Tumour Type", 'Stage 4' AS "Stage", 'South of England' AS "Region", 'All' AS "Sex", 'Age 80+' AS "Age", SUM(statisticofinterest_pancreas) as statistic_of_interest FROM tumour_cohort_linked_pancreas WHERE DIAGNOSISYEAR BETWEEN 2013 AND 2015 AND MORPH_GROUP = 'Carcinoma and Other' AND STAGE_SPLIT23 = 'Stage 4' AND SPLIT_50_TO_80 = 'Age 80+' AND REGION = 'South of England' UNION ALL SELECT '2013-2015' AS "Year", 'Carcinoma and Other' AS "Tumour Type", 'Stage 4' AS "Stage", 'South of England' AS "Region", 'Female' AS "Sex", 'Age 80+' AS "Age", SUM(statisticofinterest_pancreas) as statistic_of_interest FROM tumour_cohort_linked_pancreas WHERE DIAGNOSISYEAR BETWEEN 2013 AND 2015 AND MORPH_GROUP = 'Carcinoma and Other' AND STAGE_SPLIT23 = 'Stage 4' AND SPLIT_50_TO_80 = 'Age 80+' AND REGION = 'South of England' AND SEX = 'Female' UNION ALL SELECT '2013-2015' AS "Year", 'Carcinoma and Other' AS "Tumour Type", 'Stage 4' AS "Stage", 'South of England' AS "Region", 'Male' AS "Sex", 'Age 80+' AS "Age", SUM(statisticofinterest_pancreas) as statistic_of_interest FROM tumour_cohort_linked_pancreas WHERE DIAGNOSISYEAR BETWEEN 2013 AND 2015 AND MORPH_GROUP = 'Carcinoma and Other' AND STAGE_SPLIT23 = 'Stage 4' AND SPLIT_50_TO_80 = 'Age 80+' AND REGION = 'South of England' AND SEX = 'Male' UNION ALL SELECT '2013-2015' AS "Year", 'Carcinoma and Other' AS "Tumour Type", 'Stage unknown' AS "Stage", 'All' AS "Region", 'All' AS "Sex", 'All' AS "Age", SUM(statisticofinterest_pancreas) as statistic_of_interest FROM tumour_cohort_linked_pancreas WHERE DIAGNOSISYEAR BETWEEN 2013 AND 2015 AND MORPH_GROUP = 'Carcinoma and Other' AND STAGE_SPLIT23 = 'Stage unknown' UNION ALL SELECT '2013-2015' AS "Year", 'Carcinoma and Other' AS "Tumour Type", 'Stage unknown' AS "Stage", 'All' AS "Region", 'All' AS "Sex", 'Age 00-59' AS "Age", SUM(statisticofinterest_pancreas) as statistic_of_interest FROM tumour_cohort_linked_pancreas WHERE DIAGNOSISYEAR BETWEEN 2013 AND 2015 AND MORPH_GROUP = 'Carcinoma and Other' AND STAGE_SPLIT23 = 'Stage unknown' AND SPLIT_60_TO_80 = 'Age 00-59' UNION ALL SELECT '2013-2015' AS "Year", 'Carcinoma and Other' AS "Tumour Type", 'Stage unknown' AS "Stage", 'All' AS "Region", 'All' AS "Sex", 'Age 60-69' AS "Age", SUM(statisticofinterest_pancreas) as statistic_of_interest FROM tumour_cohort_linked_pancreas WHERE DIAGNOSISYEAR BETWEEN 2013 AND 2015 AND MORPH_GROUP = 'Carcinoma and Other' AND STAGE_SPLIT23 = 'Stage unknown' AND SPLIT_60_TO_80 = 'Age 60-69' UNION ALL SELECT '2013-2015' AS "Year", 'Carcinoma and Other' AS "Tumour Type", 'Stage unknown' AS "Stage", 'All' AS "Region", 'Female' AS "Sex", 'Age 60-69' AS "Age", SUM(statisticofinterest_pancreas) as statistic_of_interest FROM tumour_cohort_linked_pancreas WHERE DIAGNOSISYEAR BETWEEN 2013 AND 2015 AND MORPH_GROUP = 'Carcinoma and Other' AND STAGE_SPLIT23 = 'Stage unknown' AND SPLIT_60_TO_80 = 'Age 60-69' AND SEX = 'Female' UNION ALL SELECT '2013-2015' AS "Year", 'Carcinoma and Other' AS "Tumour Type", 'Stage unknown' AS "Stage", 'All' AS "Region", 'Male' AS "Sex", 'Age 60-69' AS "Age", SUM(statisticofinterest_pancreas) as statistic_of_interest FROM tumour_cohort_linked_pancreas WHERE DIAGNOSISYEAR BETWEEN 2013 AND 2015 AND MORPH_GROUP = 'Carcinoma and Other' AND STAGE_SPLIT23 = 'Stage unknown' AND SPLIT_60_TO_80 = 'Age 60-69' AND SEX = 'Male' UNION ALL SELECT '2013-2015' AS "Year", 'Carcinoma and Other' AS "Tumour Type", 'Stage unknown' AS "Stage", 'All' AS "Region", 'All' AS "Sex", 'Age 70-79' AS "Age", SUM(statisticofinterest_pancreas) as statistic_of_interest FROM tumour_cohort_linked_pancreas WHERE DIAGNOSISYEAR BETWEEN 2013 AND 2015 AND MORPH_GROUP = 'Carcinoma and Other' AND STAGE_SPLIT23 = 'Stage unknown' AND SPLIT_60_TO_80 = 'Age 70-79' UNION ALL SELECT '2013-2015' AS "Year", 'Carcinoma and Other' AS "Tumour Type", 'Stage unknown' AS "Stage", 'All' AS "Region", 'Female' AS "Sex", 'Age 70-79' AS "Age", SUM(statisticofinterest_pancreas) as statistic_of_interest FROM tumour_cohort_linked_pancreas WHERE DIAGNOSISYEAR BETWEEN 2013 AND 2015 AND MORPH_GROUP = 'Carcinoma and Other' AND STAGE_SPLIT23 = 'Stage unknown' AND SPLIT_60_TO_80 = 'Age 70-79' AND SEX = 'Female' UNION ALL SELECT '2013-2015' AS "Year", 'Carcinoma and Other' AS "Tumour Type", 'Stage unknown' AS "Stage", 'All' AS "Region", 'Male' AS "Sex", 'Age 70-79' AS "Age", SUM(statisticofinterest_pancreas) as statistic_of_interest FROM tumour_cohort_linked_pancreas WHERE DIAGNOSISYEAR BETWEEN 2013 AND 2015 AND MORPH_GROUP = 'Carcinoma and Other' AND STAGE_SPLIT23 = 'Stage unknown' AND SPLIT_60_TO_80 = 'Age 70-79' AND SEX = 'Male' UNION ALL SELECT '2013-2015' AS "Year", 'Carcinoma and Other' AS "Tumour Type", 'Stage unknown' AS "Stage", 'All' AS "Region", 'All' AS "Sex", 'Age 80+' AS "Age", SUM(statisticofinterest_pancreas) as statistic_of_interest FROM tumour_cohort_linked_pancreas WHERE DIAGNOSISYEAR BETWEEN 2013 AND 2015 AND MORPH_GROUP = 'Carcinoma and Other' AND STAGE_SPLIT23 = 'Stage unknown' AND SPLIT_60_TO_80 = 'Age 80+' UNION ALL SELECT '2013-2015' AS "Year", 'Carcinoma and Other' AS "Tumour Type", 'Stage unknown' AS "Stage", 'All' AS "Region", 'Female' AS "Sex", 'Age 80+' AS "Age", SUM(statisticofinterest_pancreas) as statistic_of_interest FROM tumour_cohort_linked_pancreas WHERE DIAGNOSISYEAR BETWEEN 2013 AND 2015 AND MORPH_GROUP = 'Carcinoma and Other' AND STAGE_SPLIT23 = 'Stage unknown' AND SPLIT_60_TO_80 = 'Age 80+' AND SEX = 'Female' UNION ALL SELECT '2013-2015' AS "Year", 'Carcinoma and Other' AS "Tumour Type", 'Stage unknown' AS "Stage", 'All' AS "Region", 'Male' AS "Sex", 'Age 80+' AS "Age", SUM(statisticofinterest_pancreas) as statistic_of_interest FROM tumour_cohort_linked_pancreas WHERE DIAGNOSISYEAR BETWEEN 2013 AND 2015 AND MORPH_GROUP = 'Carcinoma and Other' AND STAGE_SPLIT23 = 'Stage unknown' AND SPLIT_60_TO_80 = 'Age 80+' AND SEX = 'Male' UNION ALL SELECT '2013-2015' AS "Year", 'Neuroendocrine' AS "Tumour Type", 'All' AS "Stage", 'All' AS "Region", 'All' AS "Sex", 'All' AS "Age", SUM(statisticofinterest_pancreas) as statistic_of_interest FROM tumour_cohort_linked_pancreas WHERE DIAGNOSISYEAR BETWEEN 2013 AND 2015 AND MORPH_GROUP = 'Neuroendocrine' UNION ALL SELECT '2013-2015' AS "Year", 'Neuroendocrine' AS "Tumour Type", 'All' AS "Stage", 'All' AS "Region", 'All' AS "Sex", 'Age 00-49' AS "Age", SUM(statisticofinterest_pancreas) as statistic_of_interest FROM tumour_cohort_linked_pancreas WHERE DIAGNOSISYEAR BETWEEN 2013 AND 2015 AND MORPH_GROUP = 'Neuroendocrine' AND SPLIT_50_TO_70 = 'Age 00-49' UNION ALL SELECT '2013-2015' AS "Year", 'Neuroendocrine' AS "Tumour Type", 'All' AS "Stage", 'All' AS "Region", 'All' AS "Sex", 'Age 50-59' AS "Age", SUM(statisticofinterest_pancreas) as statistic_of_interest FROM tumour_cohort_linked_pancreas WHERE DIAGNOSISYEAR BETWEEN 2013 AND 2015 AND MORPH_GROUP = 'Neuroendocrine' AND SPLIT_50_TO_70 = 'Age 50-59' UNION ALL SELECT '2013-2015' AS "Year", 'Neuroendocrine' AS "Tumour Type", 'All' AS "Stage", 'All' AS "Region", 'All' AS "Sex", 'Age 60-69' AS "Age", SUM(statisticofinterest_pancreas) as statistic_of_interest FROM tumour_cohort_linked_pancreas WHERE DIAGNOSISYEAR BETWEEN 2013 AND 2015 AND MORPH_GROUP = 'Neuroendocrine' AND SPLIT_50_TO_70 = 'Age 60-69' UNION ALL SELECT '2013-2015' AS "Year", 'Neuroendocrine' AS "Tumour Type", 'All' AS "Stage", 'All' AS "Region", 'All' AS "Sex", 'Age 70+' AS "Age", SUM(statisticofinterest_pancreas) as statistic_of_interest FROM tumour_cohort_linked_pancreas WHERE DIAGNOSISYEAR BETWEEN 2013 AND 2015 AND MORPH_GROUP = 'Neuroendocrine' AND SPLIT_50_TO_70 = 'Age 70+' UNION ALL SELECT '2014-2016' AS "Year", 'All' AS "Tumour Type", 'All' AS "Stage", 'All' AS "Region", 'All' AS "Sex", 'All' AS "Age", SUM(statisticofinterest_pancreas) as statistic_of_interest FROM tumour_cohort_linked_pancreas WHERE DIAGNOSISYEAR BETWEEN 2014 AND 2016 UNION ALL SELECT '2014-2016' AS "Year", 'Carcinoma and Other' AS "Tumour Type", 'All' AS "Stage", 'All' AS "Region", 'All' AS "Sex", 'All' AS "Age", SUM(statisticofinterest_pancreas) as statistic_of_interest FROM tumour_cohort_linked_pancreas WHERE DIAGNOSISYEAR BETWEEN 2014 AND 2016 AND MORPH_GROUP = 'Carcinoma and Other' UNION ALL SELECT '2014-2016' AS "Year", 'Carcinoma and Other' AS "Tumour Type", 'Stage 1-2' AS "Stage", 'All' AS "Region", 'All' AS "Sex", 'All' AS "Age", SUM(statisticofinterest_pancreas) as statistic_of_interest FROM tumour_cohort_linked_pancreas WHERE DIAGNOSISYEAR BETWEEN 2014 AND 2016 AND MORPH_GROUP = 'Carcinoma and Other' AND STAGE_SPLIT23 = 'Stage 1-2' UNION ALL SELECT '2014-2016' AS "Year", 'Carcinoma and Other' AS "Tumour Type", 'Stage 1-2' AS "Stage", 'All' AS "Region", 'All' AS "Sex", 'Age 00-59' AS "Age", SUM(statisticofinterest_pancreas) as statistic_of_interest FROM tumour_cohort_linked_pancreas WHERE DIAGNOSISYEAR BETWEEN 2014 AND 2016 AND MORPH_GROUP = 'Carcinoma and Other' AND STAGE_SPLIT23 = 'Stage 1-2' AND SPLIT_60_TO_80 = 'Age 00-59' UNION ALL SELECT '2014-2016' AS "Year", 'Carcinoma and Other' AS "Tumour Type", 'Stage 1-2' AS "Stage", 'All' AS "Region", 'All' AS "Sex", 'Age 60-69' AS "Age", SUM(statisticofinterest_pancreas) as statistic_of_interest FROM tumour_cohort_linked_pancreas WHERE DIAGNOSISYEAR BETWEEN 2014 AND 2016 AND MORPH_GROUP = 'Carcinoma and Other' AND STAGE_SPLIT23 = 'Stage 1-2' AND SPLIT_60_TO_80 = 'Age 60-69' UNION ALL SELECT '2014-2016' AS "Year", 'Carcinoma and Other' AS "Tumour Type", 'Stage 1-2' AS "Stage", 'All' AS "Region", 'Female' AS "Sex", 'Age 60-69' AS "Age", SUM(statisticofinterest_pancreas) as statistic_of_interest FROM tumour_cohort_linked_pancreas WHERE DIAGNOSISYEAR BETWEEN 2014 AND 2016 AND MORPH_GROUP = 'Carcinoma and Other' AND STAGE_SPLIT23 = 'Stage 1-2' AND SPLIT_60_TO_80 = 'Age 60-69' AND SEX = 'Female' UNION ALL SELECT '2014-2016' AS "Year", 'Carcinoma and Other' AS "Tumour Type", 'Stage 1-2' AS "Stage", 'All' AS "Region", 'Male' AS "Sex", 'Age 60-69' AS "Age", SUM(statisticofinterest_pancreas) as statistic_of_interest FROM tumour_cohort_linked_pancreas WHERE DIAGNOSISYEAR BETWEEN 2014 AND 2016 AND MORPH_GROUP = 'Carcinoma and Other' AND STAGE_SPLIT23 = 'Stage 1-2' AND SPLIT_60_TO_80 = 'Age 60-69' AND SEX = 'Male' UNION ALL SELECT '2014-2016' AS "Year", 'Carcinoma and Other' AS "Tumour Type", 'Stage 1-2' AS "Stage", 'All' AS "Region", 'All' AS "Sex", 'Age 70-79' AS "Age", SUM(statisticofinterest_pancreas) as statistic_of_interest FROM tumour_cohort_linked_pancreas WHERE DIAGNOSISYEAR BETWEEN 2014 AND 2016 AND MORPH_GROUP = 'Carcinoma and Other' AND STAGE_SPLIT23 = 'Stage 1-2' AND SPLIT_60_TO_80 = 'Age 70-79' UNION ALL SELECT '2014-2016' AS "Year", 'Carcinoma and Other' AS "Tumour Type", 'Stage 1-2' AS "Stage", 'All' AS "Region", 'Female' AS "Sex", 'Age 70-79' AS "Age", SUM(statisticofinterest_pancreas) as statistic_of_interest FROM tumour_cohort_linked_pancreas WHERE DIAGNOSISYEAR BETWEEN 2014 AND 2016 AND MORPH_GROUP = 'Carcinoma and Other' AND STAGE_SPLIT23 = 'Stage 1-2' AND SPLIT_60_TO_80 = 'Age 70-79' AND SEX = 'Female' UNION ALL SELECT '2014-2016' AS "Year", 'Carcinoma and Other' AS "Tumour Type", 'Stage 1-2' AS "Stage", 'All' AS "Region", 'Male' AS "Sex", 'Age 70-79' AS "Age", SUM(statisticofinterest_pancreas) as statistic_of_interest FROM tumour_cohort_linked_pancreas WHERE DIAGNOSISYEAR BETWEEN 2014 AND 2016 AND MORPH_GROUP = 'Carcinoma and Other' AND STAGE_SPLIT23 = 'Stage 1-2' AND SPLIT_60_TO_80 = 'Age 70-79' AND SEX = 'Male' UNION ALL SELECT '2014-2016' AS "Year", 'Carcinoma and Other' AS "Tumour Type", 'Stage 1-2' AS "Stage", 'All' AS "Region", 'All' AS "Sex", 'Age 80+' AS "Age", SUM(statisticofinterest_pancreas) as statistic_of_interest FROM tumour_cohort_linked_pancreas WHERE DIAGNOSISYEAR BETWEEN 2014 AND 2016 AND MORPH_GROUP = 'Carcinoma and Other' AND STAGE_SPLIT23 = 'Stage 1-2' AND SPLIT_60_TO_80 = 'Age 80+' UNION ALL SELECT '2014-2016' AS "Year", 'Carcinoma and Other' AS "Tumour Type", 'Stage 1-2' AS "Stage", 'All' AS "Region", 'Female' AS "Sex", 'Age 80+' AS "Age", SUM(statisticofinterest_pancreas) as statistic_of_interest FROM tumour_cohort_linked_pancreas WHERE DIAGNOSISYEAR BETWEEN 2014 AND 2016 AND MORPH_GROUP = 'Carcinoma and Other' AND STAGE_SPLIT23 = 'Stage 1-2' AND SPLIT_60_TO_80 = 'Age 80+' AND SEX = 'Female' UNION ALL SELECT '2014-2016' AS "Year", 'Carcinoma and Other' AS "Tumour Type", 'Stage 1-2' AS "Stage", 'All' AS "Region", 'Male' AS "Sex", 'Age 80+' AS "Age", SUM(statisticofinterest_pancreas) as statistic_of_interest FROM tumour_cohort_linked_pancreas WHERE DIAGNOSISYEAR BETWEEN 2014 AND 2016 AND MORPH_GROUP = 'Carcinoma and Other' AND STAGE_SPLIT23 = 'Stage 1-2' AND SPLIT_60_TO_80 = 'Age 80+' AND SEX = 'Male' UNION ALL SELECT '2014-2016' AS "Year", 'Carcinoma and Other' AS "Tumour Type", 'Stage 3' AS "Stage", 'All' AS "Region", 'All' AS "Sex", 'All' AS "Age", SUM(statisticofinterest_pancreas) as statistic_of_interest FROM tumour_cohort_linked_pancreas WHERE DIAGNOSISYEAR BETWEEN 2014 AND 2016 AND MORPH_GROUP = 'Carcinoma and Other' AND STAGE_SPLIT23 = 'Stage 3' UNION ALL SELECT '2014-2016' AS "Year", 'Carcinoma and Other' AS "Tumour Type", 'Stage 3' AS "Stage", 'All' AS "Region", 'All' AS "Sex", 'Age 00-59' AS "Age", SUM(statisticofinterest_pancreas) as statistic_of_interest FROM tumour_cohort_linked_pancreas WHERE DIAGNOSISYEAR BETWEEN 2014 AND 2016 AND MORPH_GROUP = 'Carcinoma and Other' AND STAGE_SPLIT23 = 'Stage 3' AND SPLIT_60_70 = 'Age 00-59' UNION ALL SELECT '2014-2016' AS "Year", 'Carcinoma and Other' AS "Tumour Type", 'Stage 3' AS "Stage", 'All' AS "Region", 'All' AS "Sex", 'Age 60-69' AS "Age", SUM(statisticofinterest_pancreas) as statistic_of_interest FROM tumour_cohort_linked_pancreas WHERE DIAGNOSISYEAR BETWEEN 2014 AND 2016 AND MORPH_GROUP = 'Carcinoma and Other' AND STAGE_SPLIT23 = 'Stage 3' AND SPLIT_60_70 = 'Age 60-69' UNION ALL SELECT '2014-2016' AS "Year", 'Carcinoma and Other' AS "Tumour Type", 'Stage 3' AS "Stage", 'All' AS "Region", 'All' AS "Sex", 'Age 70+' AS "Age", SUM(statisticofinterest_pancreas) as statistic_of_interest FROM tumour_cohort_linked_pancreas WHERE DIAGNOSISYEAR BETWEEN 2014 AND 2016 AND MORPH_GROUP = 'Carcinoma and Other' AND STAGE_SPLIT23 = 'Stage 3' AND SPLIT_60_70 = 'Age 70+' UNION ALL SELECT '2014-2016' AS "Year", 'Carcinoma and Other' AS "Tumour Type", 'Stage 3' AS "Stage", 'All' AS "Region", 'Female' AS "Sex", 'Age 70+' AS "Age", SUM(statisticofinterest_pancreas) as statistic_of_interest FROM tumour_cohort_linked_pancreas WHERE DIAGNOSISYEAR BETWEEN 2014 AND 2016 AND MORPH_GROUP = 'Carcinoma and Other' AND STAGE_SPLIT23 = 'Stage 3' AND SPLIT_60_70 = 'Age 70+' AND SEX = 'Female' UNION ALL SELECT '2014-2016' AS "Year", 'Carcinoma and Other' AS "Tumour Type", 'Stage 3' AS "Stage", 'All' AS "Region", 'Male' AS "Sex", 'Age 70+' AS "Age", SUM(statisticofinterest_pancreas) as statistic_of_interest FROM tumour_cohort_linked_pancreas WHERE DIAGNOSISYEAR BETWEEN 2014 AND 2016 AND MORPH_GROUP = 'Carcinoma and Other' AND STAGE_SPLIT23 = 'Stage 3' AND SPLIT_60_70 = 'Age 70+' AND SEX = 'Male' UNION ALL SELECT '2014-2016' AS "Year", 'Carcinoma and Other' AS "Tumour Type", 'Stage 4' AS "Stage", 'All' AS "Region", 'All' AS "Sex", 'All' AS "Age", SUM(statisticofinterest_pancreas) as statistic_of_interest FROM tumour_cohort_linked_pancreas WHERE DIAGNOSISYEAR BETWEEN 2014 AND 2016 AND MORPH_GROUP = 'Carcinoma and Other' AND STAGE_SPLIT23 = 'Stage 4' UNION ALL SELECT '2014-2016' AS "Year", 'Carcinoma and Other' AS "Tumour Type", 'Stage 4' AS "Stage", 'All' AS "Region", 'All' AS "Sex", 'Age 00-49' AS "Age", SUM(statisticofinterest_pancreas) as statistic_of_interest FROM tumour_cohort_linked_pancreas WHERE DIAGNOSISYEAR BETWEEN 2014 AND 2016 AND MORPH_GROUP = 'Carcinoma and Other' AND STAGE_SPLIT23 = 'Stage 4' AND SPLIT_50_TO_80 = 'Age 00-49' UNION ALL SELECT '2014-2016' AS "Year", 'Carcinoma and Other' AS "Tumour Type", 'Stage 4' AS "Stage", 'All' AS "Region", 'All' AS "Sex", 'Age 50-59' AS "Age", SUM(statisticofinterest_pancreas) as statistic_of_interest FROM tumour_cohort_linked_pancreas WHERE DIAGNOSISYEAR BETWEEN 2014 AND 2016 AND MORPH_GROUP = 'Carcinoma and Other' AND STAGE_SPLIT23 = 'Stage 4' AND SPLIT_50_TO_80 = 'Age 50-59' UNION ALL SELECT '2014-2016' AS "Year", 'Carcinoma and Other' AS "Tumour Type", 'Stage 4' AS "Stage", 'All' AS "Region", 'All' AS "Sex", 'Age 60-69' AS "Age", SUM(statisticofinterest_pancreas) as statistic_of_interest FROM tumour_cohort_linked_pancreas WHERE DIAGNOSISYEAR BETWEEN 2014 AND 2016 AND MORPH_GROUP = 'Carcinoma and Other' AND STAGE_SPLIT23 = 'Stage 4' AND SPLIT_50_TO_80 = 'Age 60-69' UNION ALL SELECT '2014-2016' AS "Year", 'Carcinoma and Other' AS "Tumour Type", 'Stage 4' AS "Stage", 'London' AS "Region", 'All' AS "Sex", 'Age 60-69' AS "Age", SUM(statisticofinterest_pancreas) as statistic_of_interest FROM tumour_cohort_linked_pancreas WHERE DIAGNOSISYEAR BETWEEN 2014 AND 2016 AND MORPH_GROUP = 'Carcinoma and Other' AND STAGE_SPLIT23 = 'Stage 4' AND SPLIT_50_TO_80 = 'Age 60-69' AND REGION = 'London' UNION ALL SELECT '2014-2016' AS "Year", 'Carcinoma and Other' AS "Tumour Type", 'Stage 4' AS "Stage", 'Midlands and East of England' AS "Region", 'All' AS "Sex", 'Age 60-69' AS "Age", SUM(statisticofinterest_pancreas) as statistic_of_interest FROM tumour_cohort_linked_pancreas WHERE DIAGNOSISYEAR BETWEEN 2014 AND 2016 AND MORPH_GROUP = 'Carcinoma and Other' AND STAGE_SPLIT23 = 'Stage 4' AND SPLIT_50_TO_80 = 'Age 60-69' AND REGION = 'Midlands and East of England' UNION ALL SELECT '2014-2016' AS "Year", 'Carcinoma and Other' AS "Tumour Type", 'Stage 4' AS "Stage", 'Midlands and East of England' AS "Region", 'Female' AS "Sex", 'Age 60-69' AS "Age", SUM(statisticofinterest_pancreas) as statistic_of_interest FROM tumour_cohort_linked_pancreas WHERE DIAGNOSISYEAR BETWEEN 2014 AND 2016 AND MORPH_GROUP = 'Carcinoma and Other' AND STAGE_SPLIT23 = 'Stage 4' AND SPLIT_50_TO_80 = 'Age 60-69' AND REGION = 'Midlands and East of England' AND SEX = 'Female' UNION ALL SELECT '2014-2016' AS "Year", 'Carcinoma and Other' AS "Tumour Type", 'Stage 4' AS "Stage", 'Midlands and East of England' AS "Region", 'Male' AS "Sex", 'Age 60-69' AS "Age", SUM(statisticofinterest_pancreas) as statistic_of_interest FROM tumour_cohort_linked_pancreas WHERE DIAGNOSISYEAR BETWEEN 2014 AND 2016 AND MORPH_GROUP = 'Carcinoma and Other' AND STAGE_SPLIT23 = 'Stage 4' AND SPLIT_50_TO_80 = 'Age 60-69' AND REGION = 'Midlands and East of England' AND SEX = 'Male' UNION ALL SELECT '2014-2016' AS "Year", 'Carcinoma and Other' AS "Tumour Type", 'Stage 4' AS "Stage", 'North of England' AS "Region", 'All' AS "Sex", 'Age 60-69' AS "Age", SUM(statisticofinterest_pancreas) as statistic_of_interest FROM tumour_cohort_linked_pancreas WHERE DIAGNOSISYEAR BETWEEN 2014 AND 2016 AND MORPH_GROUP = 'Carcinoma and Other' AND STAGE_SPLIT23 = 'Stage 4' AND SPLIT_50_TO_80 = 'Age 60-69' AND REGION = 'North of England' UNION ALL SELECT '2014-2016' AS "Year", 'Carcinoma and Other' AS "Tumour Type", 'Stage 4' AS "Stage", 'North of England' AS "Region", 'Female' AS "Sex", 'Age 60-69' AS "Age", SUM(statisticofinterest_pancreas) as statistic_of_interest FROM tumour_cohort_linked_pancreas WHERE DIAGNOSISYEAR BETWEEN 2014 AND 2016 AND MORPH_GROUP = 'Carcinoma and Other' AND STAGE_SPLIT23 = 'Stage 4' AND SPLIT_50_TO_80 = 'Age 60-69' AND REGION = 'North of England' AND SEX = 'Female' UNION ALL SELECT '2014-2016' AS "Year", 'Carcinoma and Other' AS "Tumour Type", 'Stage 4' AS "Stage", 'North of England' AS "Region", 'Male' AS "Sex", 'Age 60-69' AS "Age", SUM(statisticofinterest_pancreas) as statistic_of_interest FROM tumour_cohort_linked_pancreas WHERE DIAGNOSISYEAR BETWEEN 2014 AND 2016 AND MORPH_GROUP = 'Carcinoma and Other' AND STAGE_SPLIT23 = 'Stage 4' AND SPLIT_50_TO_80 = 'Age 60-69' AND REGION = 'North of England' AND SEX = 'Male' UNION ALL SELECT '2014-2016' AS "Year", 'Carcinoma and Other' AS "Tumour Type", 'Stage 4' AS "Stage", 'South of England' AS "Region", 'All' AS "Sex", 'Age 60-69' AS "Age", SUM(statisticofinterest_pancreas) as statistic_of_interest FROM tumour_cohort_linked_pancreas WHERE DIAGNOSISYEAR BETWEEN 2014 AND 2016 AND MORPH_GROUP = 'Carcinoma and Other' AND STAGE_SPLIT23 = 'Stage 4' AND SPLIT_50_TO_80 = 'Age 60-69' AND REGION = 'South of England' UNION ALL SELECT '2014-2016' AS "Year", 'Carcinoma and Other' AS "Tumour Type", 'Stage 4' AS "Stage", 'South of England' AS "Region", 'Female' AS "Sex", 'Age 60-69' AS "Age", SUM(statisticofinterest_pancreas) as statistic_of_interest FROM tumour_cohort_linked_pancreas WHERE DIAGNOSISYEAR BETWEEN 2014 AND 2016 AND MORPH_GROUP = 'Carcinoma and Other' AND STAGE_SPLIT23 = 'Stage 4' AND SPLIT_50_TO_80 = 'Age 60-69' AND REGION = 'South of England' AND SEX = 'Female' UNION ALL SELECT '2014-2016' AS "Year", 'Carcinoma and Other' AS "Tumour Type", 'Stage 4' AS "Stage", 'South of England' AS "Region", 'Male' AS "Sex", 'Age 60-69' AS "Age", SUM(statisticofinterest_pancreas) as statistic_of_interest FROM tumour_cohort_linked_pancreas WHERE DIAGNOSISYEAR BETWEEN 2014 AND 2016 AND MORPH_GROUP = 'Carcinoma and Other' AND STAGE_SPLIT23 = 'Stage 4' AND SPLIT_50_TO_80 = 'Age 60-69' AND REGION = 'South of England' AND SEX = 'Male' UNION ALL SELECT '2014-2016' AS "Year", 'Carcinoma and Other' AS "Tumour Type", 'Stage 4' AS "Stage", 'All' AS "Region", 'All' AS "Sex", 'Age 70-79' AS "Age", SUM(statisticofinterest_pancreas) as statistic_of_interest FROM tumour_cohort_linked_pancreas WHERE DIAGNOSISYEAR BETWEEN 2014 AND 2016 AND MORPH_GROUP = 'Carcinoma and Other' AND STAGE_SPLIT23 = 'Stage 4' AND SPLIT_50_TO_80 = 'Age 70-79' UNION ALL SELECT '2014-2016' AS "Year", 'Carcinoma and Other' AS "Tumour Type", 'Stage 4' AS "Stage", 'London' AS "Region", 'All' AS "Sex", 'Age 70-79' AS "Age", SUM(statisticofinterest_pancreas) as statistic_of_interest FROM tumour_cohort_linked_pancreas WHERE DIAGNOSISYEAR BETWEEN 2014 AND 2016 AND MORPH_GROUP = 'Carcinoma and Other' AND STAGE_SPLIT23 = 'Stage 4' AND SPLIT_50_TO_80 = 'Age 70-79' AND REGION = 'London' UNION ALL SELECT '2014-2016' AS "Year", 'Carcinoma and Other' AS "Tumour Type", 'Stage 4' AS "Stage", 'Midlands and East of England' AS "Region", 'All' AS "Sex", 'Age 70-79' AS "Age", SUM(statisticofinterest_pancreas) as statistic_of_interest FROM tumour_cohort_linked_pancreas WHERE DIAGNOSISYEAR BETWEEN 2014 AND 2016 AND MORPH_GROUP = 'Carcinoma and Other' AND STAGE_SPLIT23 = 'Stage 4' AND SPLIT_50_TO_80 = 'Age 70-79' AND REGION = 'Midlands and East of England' UNION ALL SELECT '2014-2016' AS "Year", 'Carcinoma and Other' AS "Tumour Type", 'Stage 4' AS "Stage", 'Midlands and East of England' AS "Region", 'Female' AS "Sex", 'Age 70-79' AS "Age", SUM(statisticofinterest_pancreas) as statistic_of_interest FROM tumour_cohort_linked_pancreas WHERE DIAGNOSISYEAR BETWEEN 2014 AND 2016 AND MORPH_GROUP = 'Carcinoma and Other' AND STAGE_SPLIT23 = 'Stage 4' AND SPLIT_50_TO_80 = 'Age 70-79' AND REGION = 'Midlands and East of England' AND SEX = 'Female' UNION ALL SELECT '2014-2016' AS "Year", 'Carcinoma and Other' AS "Tumour Type", 'Stage 4' AS "Stage", 'Midlands and East of England' AS "Region", 'Male' AS "Sex", 'Age 70-79' AS "Age", SUM(statisticofinterest_pancreas) as statistic_of_interest FROM tumour_cohort_linked_pancreas WHERE DIAGNOSISYEAR BETWEEN 2014 AND 2016 AND MORPH_GROUP = 'Carcinoma and Other' AND STAGE_SPLIT23 = 'Stage 4' AND SPLIT_50_TO_80 = 'Age 70-79' AND REGION = 'Midlands and East of England' AND SEX = 'Male' UNION ALL SELECT '2014-2016' AS "Year", 'Carcinoma and Other' AS "Tumour Type", 'Stage 4' AS "Stage", 'North of England' AS "Region", 'All' AS "Sex", 'Age 70-79' AS "Age", SUM(statisticofinterest_pancreas) as statistic_of_interest FROM tumour_cohort_linked_pancreas WHERE DIAGNOSISYEAR BETWEEN 2014 AND 2016 AND MORPH_GROUP = 'Carcinoma and Other' AND STAGE_SPLIT23 = 'Stage 4' AND SPLIT_50_TO_80 = 'Age 70-79' AND REGION = 'North of England' UNION ALL SELECT '2014-2016' AS "Year", 'Carcinoma and Other' AS "Tumour Type", 'Stage 4' AS "Stage", 'North of England' AS "Region", 'Female' AS "Sex", 'Age 70-79' AS "Age", SUM(statisticofinterest_pancreas) as statistic_of_interest FROM tumour_cohort_linked_pancreas WHERE DIAGNOSISYEAR BETWEEN 2014 AND 2016 AND MORPH_GROUP = 'Carcinoma and Other' AND STAGE_SPLIT23 = 'Stage 4' AND SPLIT_50_TO_80 = 'Age 70-79' AND REGION = 'North of England' AND SEX = 'Female' UNION ALL SELECT '2014-2016' AS "Year", 'Carcinoma and Other' AS "Tumour Type", 'Stage 4' AS "Stage", 'North of England' AS "Region", 'Male' AS "Sex", 'Age 70-79' AS "Age", SUM(statisticofinterest_pancreas) as statistic_of_interest FROM tumour_cohort_linked_pancreas WHERE DIAGNOSISYEAR BETWEEN 2014 AND 2016 AND MORPH_GROUP = 'Carcinoma and Other' AND STAGE_SPLIT23 = 'Stage 4' AND SPLIT_50_TO_80 = 'Age 70-79' AND REGION = 'North of England' AND SEX = 'Male' UNION ALL SELECT '2014-2016' AS "Year", 'Carcinoma and Other' AS "Tumour Type", 'Stage 4' AS "Stage", 'South of England' AS "Region", 'All' AS "Sex", 'Age 70-79' AS "Age", SUM(statisticofinterest_pancreas) as statistic_of_interest FROM tumour_cohort_linked_pancreas WHERE DIAGNOSISYEAR BETWEEN 2014 AND 2016 AND MORPH_GROUP = 'Carcinoma and Other' AND STAGE_SPLIT23 = 'Stage 4' AND SPLIT_50_TO_80 = 'Age 70-79' AND REGION = 'South of England' UNION ALL SELECT '2014-2016' AS "Year", 'Carcinoma and Other' AS "Tumour Type", 'Stage 4' AS "Stage", 'South of England' AS "Region", 'Female' AS "Sex", 'Age 70-79' AS "Age", SUM(statisticofinterest_pancreas) as statistic_of_interest FROM tumour_cohort_linked_pancreas WHERE DIAGNOSISYEAR BETWEEN 2014 AND 2016 AND MORPH_GROUP = 'Carcinoma and Other' AND STAGE_SPLIT23 = 'Stage 4' AND SPLIT_50_TO_80 = 'Age 70-79' AND REGION = 'South of England' AND SEX = 'Female' UNION ALL SELECT '2014-2016' AS "Year", 'Carcinoma and Other' AS "Tumour Type", 'Stage 4' AS "Stage", 'South of England' AS "Region", 'Male' AS "Sex", 'Age 70-79' AS "Age", SUM(statisticofinterest_pancreas) as statistic_of_interest FROM tumour_cohort_linked_pancreas WHERE DIAGNOSISYEAR BETWEEN 2014 AND 2016 AND MORPH_GROUP = 'Carcinoma and Other' AND STAGE_SPLIT23 = 'Stage 4' AND SPLIT_50_TO_80 = 'Age 70-79' AND REGION = 'South of England' AND SEX = 'Male' UNION ALL SELECT '2014-2016' AS "Year", 'Carcinoma and Other' AS "Tumour Type", 'Stage 4' AS "Stage", 'All' AS "Region", 'All' AS "Sex", 'Age 80+' AS "Age", SUM(statisticofinterest_pancreas) as statistic_of_interest FROM tumour_cohort_linked_pancreas WHERE DIAGNOSISYEAR BETWEEN 2014 AND 2016 AND MORPH_GROUP = 'Carcinoma and Other' AND STAGE_SPLIT23 = 'Stage 4' AND SPLIT_50_TO_80 = 'Age 80+' UNION ALL SELECT '2014-2016' AS "Year", 'Carcinoma and Other' AS "Tumour Type", 'Stage 4' AS "Stage", 'London' AS "Region", 'All' AS "Sex", 'Age 80+' AS "Age", SUM(statisticofinterest_pancreas) as statistic_of_interest FROM tumour_cohort_linked_pancreas WHERE DIAGNOSISYEAR BETWEEN 2014 AND 2016 AND MORPH_GROUP = 'Carcinoma and Other' AND STAGE_SPLIT23 = 'Stage 4' AND SPLIT_50_TO_80 = 'Age 80+' AND REGION = 'London' UNION ALL SELECT '2014-2016' AS "Year", 'Carcinoma and Other' AS "Tumour Type", 'Stage 4' AS "Stage", 'Midlands and East of England' AS "Region", 'All' AS "Sex", 'Age 80+' AS "Age", SUM(statisticofinterest_pancreas) as statistic_of_interest FROM tumour_cohort_linked_pancreas WHERE DIAGNOSISYEAR BETWEEN 2014 AND 2016 AND MORPH_GROUP = 'Carcinoma and Other' AND STAGE_SPLIT23 = 'Stage 4' AND SPLIT_50_TO_80 = 'Age 80+' AND REGION = 'Midlands and East of England' UNION ALL SELECT '2014-2016' AS "Year", 'Carcinoma and Other' AS "Tumour Type", 'Stage 4' AS "Stage", 'Midlands and East of England' AS "Region", 'Female' AS "Sex", 'Age 80+' AS "Age", SUM(statisticofinterest_pancreas) as statistic_of_interest FROM tumour_cohort_linked_pancreas WHERE DIAGNOSISYEAR BETWEEN 2014 AND 2016 AND MORPH_GROUP = 'Carcinoma and Other' AND STAGE_SPLIT23 = 'Stage 4' AND SPLIT_50_TO_80 = 'Age 80+' AND REGION = 'Midlands and East of England' AND SEX = 'Female' UNION ALL SELECT '2014-2016' AS "Year", 'Carcinoma and Other' AS "Tumour Type", 'Stage 4' AS "Stage", 'Midlands and East of England' AS "Region", 'Male' AS "Sex", 'Age 80+' AS "Age", SUM(statisticofinterest_pancreas) as statistic_of_interest FROM tumour_cohort_linked_pancreas WHERE DIAGNOSISYEAR BETWEEN 2014 AND 2016 AND MORPH_GROUP = 'Carcinoma and Other' AND STAGE_SPLIT23 = 'Stage 4' AND SPLIT_50_TO_80 = 'Age 80+' AND REGION = 'Midlands and East of England' AND SEX = 'Male' UNION ALL SELECT '2014-2016' AS "Year", 'Carcinoma and Other' AS "Tumour Type", 'Stage 4' AS "Stage", 'North of England' AS "Region", 'All' AS "Sex", 'Age 80+' AS "Age", SUM(statisticofinterest_pancreas) as statistic_of_interest FROM tumour_cohort_linked_pancreas WHERE DIAGNOSISYEAR BETWEEN 2014 AND 2016 AND MORPH_GROUP = 'Carcinoma and Other' AND STAGE_SPLIT23 = 'Stage 4' AND SPLIT_50_TO_80 = 'Age 80+' AND REGION = 'North of England' UNION ALL SELECT '2014-2016' AS "Year", 'Carcinoma and Other' AS "Tumour Type", 'Stage 4' AS "Stage", 'North of England' AS "Region", 'Female' AS "Sex", 'Age 80+' AS "Age", SUM(statisticofinterest_pancreas) as statistic_of_interest FROM tumour_cohort_linked_pancreas WHERE DIAGNOSISYEAR BETWEEN 2014 AND 2016 AND MORPH_GROUP = 'Carcinoma and Other' AND STAGE_SPLIT23 = 'Stage 4' AND SPLIT_50_TO_80 = 'Age 80+' AND REGION = 'North of England' AND SEX = 'Female' UNION ALL SELECT '2014-2016' AS "Year", 'Carcinoma and Other' AS "Tumour Type", 'Stage 4' AS "Stage", 'North of England' AS "Region", 'Male' AS "Sex", 'Age 80+' AS "Age", SUM(statisticofinterest_pancreas) as statistic_of_interest FROM tumour_cohort_linked_pancreas WHERE DIAGNOSISYEAR BETWEEN 2014 AND 2016 AND MORPH_GROUP = 'Carcinoma and Other' AND STAGE_SPLIT23 = 'Stage 4' AND SPLIT_50_TO_80 = 'Age 80+' AND REGION = 'North of England' AND SEX = 'Male' UNION ALL SELECT '2014-2016' AS "Year", 'Carcinoma and Other' AS "Tumour Type", 'Stage 4' AS "Stage", 'South of England' AS "Region", 'All' AS "Sex", 'Age 80+' AS "Age", SUM(statisticofinterest_pancreas) as statistic_of_interest FROM tumour_cohort_linked_pancreas WHERE DIAGNOSISYEAR BETWEEN 2014 AND 2016 AND MORPH_GROUP = 'Carcinoma and Other' AND STAGE_SPLIT23 = 'Stage 4' AND SPLIT_50_TO_80 = 'Age 80+' AND REGION = 'South of England' UNION ALL SELECT '2014-2016' AS "Year", 'Carcinoma and Other' AS "Tumour Type", 'Stage 4' AS "Stage", 'South of England' AS "Region", 'Female' AS "Sex", 'Age 80+' AS "Age", SUM(statisticofinterest_pancreas) as statistic_of_interest FROM tumour_cohort_linked_pancreas WHERE DIAGNOSISYEAR BETWEEN 2014 AND 2016 AND MORPH_GROUP = 'Carcinoma and Other' AND STAGE_SPLIT23 = 'Stage 4' AND SPLIT_50_TO_80 = 'Age 80+' AND REGION = 'South of England' AND SEX = 'Female' UNION ALL SELECT '2014-2016' AS "Year", 'Carcinoma and Other' AS "Tumour Type", 'Stage 4' AS "Stage", 'South of England' AS "Region", 'Male' AS "Sex", 'Age 80+' AS "Age", SUM(statisticofinterest_pancreas) as statistic_of_interest FROM tumour_cohort_linked_pancreas WHERE DIAGNOSISYEAR BETWEEN 2014 AND 2016 AND MORPH_GROUP = 'Carcinoma and Other' AND STAGE_SPLIT23 = 'Stage 4' AND SPLIT_50_TO_80 = 'Age 80+' AND REGION = 'South of England' AND SEX = 'Male' UNION ALL SELECT '2014-2016' AS "Year", 'Carcinoma and Other' AS "Tumour Type", 'Stage unknown' AS "Stage", 'All' AS "Region", 'All' AS "Sex", 'All' AS "Age", SUM(statisticofinterest_pancreas) as statistic_of_interest FROM tumour_cohort_linked_pancreas WHERE DIAGNOSISYEAR BETWEEN 2014 AND 2016 AND MORPH_GROUP = 'Carcinoma and Other' AND STAGE_SPLIT23 = 'Stage unknown' UNION ALL SELECT '2014-2016' AS "Year", 'Carcinoma and Other' AS "Tumour Type", 'Stage unknown' AS "Stage", 'All' AS "Region", 'All' AS "Sex", 'Age 00-59' AS "Age", SUM(statisticofinterest_pancreas) as statistic_of_interest FROM tumour_cohort_linked_pancreas WHERE DIAGNOSISYEAR BETWEEN 2014 AND 2016 AND MORPH_GROUP = 'Carcinoma and Other' AND STAGE_SPLIT23 = 'Stage unknown' AND SPLIT_60_TO_80 = 'Age 00-59' UNION ALL SELECT '2014-2016' AS "Year", 'Carcinoma and Other' AS "Tumour Type", 'Stage unknown' AS "Stage", 'All' AS "Region", 'All' AS "Sex", 'Age 60-69' AS "Age", SUM(statisticofinterest_pancreas) as statistic_of_interest FROM tumour_cohort_linked_pancreas WHERE DIAGNOSISYEAR BETWEEN 2014 AND 2016 AND MORPH_GROUP = 'Carcinoma and Other' AND STAGE_SPLIT23 = 'Stage unknown' AND SPLIT_60_TO_80 = 'Age 60-69' UNION ALL SELECT '2014-2016' AS "Year", 'Carcinoma and Other' AS "Tumour Type", 'Stage unknown' AS "Stage", 'All' AS "Region", 'Female' AS "Sex", 'Age 60-69' AS "Age", SUM(statisticofinterest_pancreas) as statistic_of_interest FROM tumour_cohort_linked_pancreas WHERE DIAGNOSISYEAR BETWEEN 2014 AND 2016 AND MORPH_GROUP = 'Carcinoma and Other' AND STAGE_SPLIT23 = 'Stage unknown' AND SPLIT_60_TO_80 = 'Age 60-69' AND SEX = 'Female' UNION ALL SELECT '2014-2016' AS "Year", 'Carcinoma and Other' AS "Tumour Type", 'Stage unknown' AS "Stage", 'All' AS "Region", 'Male' AS "Sex", 'Age 60-69' AS "Age", SUM(statisticofinterest_pancreas) as statistic_of_interest FROM tumour_cohort_linked_pancreas WHERE DIAGNOSISYEAR BETWEEN 2014 AND 2016 AND MORPH_GROUP = 'Carcinoma and Other' AND STAGE_SPLIT23 = 'Stage unknown' AND SPLIT_60_TO_80 = 'Age 60-69' AND SEX = 'Male' UNION ALL SELECT '2014-2016' AS "Year", 'Carcinoma and Other' AS "Tumour Type", 'Stage unknown' AS "Stage", 'All' AS "Region", 'All' AS "Sex", 'Age 70-79' AS "Age", SUM(statisticofinterest_pancreas) as statistic_of_interest FROM tumour_cohort_linked_pancreas WHERE DIAGNOSISYEAR BETWEEN 2014 AND 2016 AND MORPH_GROUP = 'Carcinoma and Other' AND STAGE_SPLIT23 = 'Stage unknown' AND SPLIT_60_TO_80 = 'Age 70-79' UNION ALL SELECT '2014-2016' AS "Year", 'Carcinoma and Other' AS "Tumour Type", 'Stage unknown' AS "Stage", 'All' AS "Region", 'Female' AS "Sex", 'Age 70-79' AS "Age", SUM(statisticofinterest_pancreas) as statistic_of_interest FROM tumour_cohort_linked_pancreas WHERE DIAGNOSISYEAR BETWEEN 2014 AND 2016 AND MORPH_GROUP = 'Carcinoma and Other' AND STAGE_SPLIT23 = 'Stage unknown' AND SPLIT_60_TO_80 = 'Age 70-79' AND SEX = 'Female' UNION ALL SELECT '2014-2016' AS "Year", 'Carcinoma and Other' AS "Tumour Type", 'Stage unknown' AS "Stage", 'All' AS "Region", 'Male' AS "Sex", 'Age 70-79' AS "Age", SUM(statisticofinterest_pancreas) as statistic_of_interest FROM tumour_cohort_linked_pancreas WHERE DIAGNOSISYEAR BETWEEN 2014 AND 2016 AND MORPH_GROUP = 'Carcinoma and Other' AND STAGE_SPLIT23 = 'Stage unknown' AND SPLIT_60_TO_80 = 'Age 70-79' AND SEX = 'Male' UNION ALL SELECT '2014-2016' AS "Year", 'Carcinoma and Other' AS "Tumour Type", 'Stage unknown' AS "Stage", 'All' AS "Region", 'All' AS "Sex", 'Age 80+' AS "Age", SUM(statisticofinterest_pancreas) as statistic_of_interest FROM tumour_cohort_linked_pancreas WHERE DIAGNOSISYEAR BETWEEN 2014 AND 2016 AND MORPH_GROUP = 'Carcinoma and Other' AND STAGE_SPLIT23 = 'Stage unknown' AND SPLIT_60_TO_80 = 'Age 80+' UNION ALL SELECT '2014-2016' AS "Year", 'Carcinoma and Other' AS "Tumour Type", 'Stage unknown' AS "Stage", 'All' AS "Region", 'Female' AS "Sex", 'Age 80+' AS "Age", SUM(statisticofinterest_pancreas) as statistic_of_interest FROM tumour_cohort_linked_pancreas WHERE DIAGNOSISYEAR BETWEEN 2014 AND 2016 AND MORPH_GROUP = 'Carcinoma and Other' AND STAGE_SPLIT23 = 'Stage unknown' AND SPLIT_60_TO_80 = 'Age 80+' AND SEX = 'Female' UNION ALL SELECT '2014-2016' AS "Year", 'Carcinoma and Other' AS "Tumour Type", 'Stage unknown' AS "Stage", 'All' AS "Region", 'Male' AS "Sex", 'Age 80+' AS "Age", SUM(statisticofinterest_pancreas) as statistic_of_interest FROM tumour_cohort_linked_pancreas WHERE DIAGNOSISYEAR BETWEEN 2014 AND 2016 AND MORPH_GROUP = 'Carcinoma and Other' AND STAGE_SPLIT23 = 'Stage unknown' AND SPLIT_60_TO_80 = 'Age 80+' AND SEX = 'Male' UNION ALL SELECT '2014-2016' AS "Year", 'Neuroendocrine' AS "Tumour Type", 'All' AS "Stage", 'All' AS "Region", 'All' AS "Sex", 'All' AS "Age", SUM(statisticofinterest_pancreas) as statistic_of_interest FROM tumour_cohort_linked_pancreas WHERE DIAGNOSISYEAR BETWEEN 2014 AND 2016 AND MORPH_GROUP = 'Neuroendocrine' UNION ALL SELECT '2014-2016' AS "Year", 'Neuroendocrine' AS "Tumour Type", 'All' AS "Stage", 'All' AS "Region", 'All' AS "Sex", 'Age 00-49' AS "Age", SUM(statisticofinterest_pancreas) as statistic_of_interest FROM tumour_cohort_linked_pancreas WHERE DIAGNOSISYEAR BETWEEN 2014 AND 2016 AND MORPH_GROUP = 'Neuroendocrine' AND SPLIT_50_TO_70 = 'Age 00-49' UNION ALL SELECT '2014-2016' AS "Year", 'Neuroendocrine' AS "Tumour Type", 'All' AS "Stage", 'All' AS "Region", 'All' AS "Sex", 'Age 50-59' AS "Age", SUM(statisticofinterest_pancreas) as statistic_of_interest FROM tumour_cohort_linked_pancreas WHERE DIAGNOSISYEAR BETWEEN 2014 AND 2016 AND MORPH_GROUP = 'Neuroendocrine' AND SPLIT_50_TO_70 = 'Age 50-59' UNION ALL SELECT '2014-2016' AS "Year", 'Neuroendocrine' AS "Tumour Type", 'All' AS "Stage", 'All' AS "Region", 'All' AS "Sex", 'Age 60-69' AS "Age", SUM(statisticofinterest_pancreas) as statistic_of_interest FROM tumour_cohort_linked_pancreas WHERE DIAGNOSISYEAR BETWEEN 2014 AND 2016 AND MORPH_GROUP = 'Neuroendocrine' AND SPLIT_50_TO_70 = 'Age 60-69' UNION ALL SELECT '2014-2016' AS "Year", 'Neuroendocrine' AS "Tumour Type", 'All' AS "Stage", 'All' AS "Region", 'All' AS "Sex", 'Age 70+' AS "Age", SUM(statisticofinterest_pancreas) as statistic_of_interest FROM tumour_cohort_linked_pancreas WHERE DIAGNOSISYEAR BETWEEN 2014 AND 2016 AND MORPH_GROUP = 'Neuroendocrine' AND SPLIT_50_TO_70 = 'Age 70+' UNION ALL SELECT '2015-2017' AS "Year", 'All' AS "Tumour Type", 'All' AS "Stage", 'All' AS "Region", 'All' AS "Sex", 'All' AS "Age", SUM(statisticofinterest_pancreas) as statistic_of_interest FROM tumour_cohort_linked_pancreas WHERE DIAGNOSISYEAR BETWEEN 2015 AND 2017 UNION ALL SELECT '2015-2017' AS "Year", 'Carcinoma and Other' AS "Tumour Type", 'All' AS "Stage", 'All' AS "Region", 'All' AS "Sex", 'All' AS "Age", SUM(statisticofinterest_pancreas) as statistic_of_interest FROM tumour_cohort_linked_pancreas WHERE DIAGNOSISYEAR BETWEEN 2015 AND 2017 AND MORPH_GROUP = 'Carcinoma and Other' UNION ALL SELECT '2015-2017' AS "Year", 'Carcinoma and Other' AS "Tumour Type", 'Stage 1-2' AS "Stage", 'All' AS "Region", 'All' AS "Sex", 'All' AS "Age", SUM(statisticofinterest_pancreas) as statistic_of_interest FROM tumour_cohort_linked_pancreas WHERE DIAGNOSISYEAR BETWEEN 2015 AND 2017 AND MORPH_GROUP = 'Carcinoma and Other' AND STAGE_SPLIT23 = 'Stage 1-2' UNION ALL SELECT '2015-2017' AS "Year", 'Carcinoma and Other' AS "Tumour Type", 'Stage 1-2' AS "Stage", 'All' AS "Region", 'All' AS "Sex", 'Age 00-59' AS "Age", SUM(statisticofinterest_pancreas) as statistic_of_interest FROM tumour_cohort_linked_pancreas WHERE DIAGNOSISYEAR BETWEEN 2015 AND 2017 AND MORPH_GROUP = 'Carcinoma and Other' AND STAGE_SPLIT23 = 'Stage 1-2' AND SPLIT_60_TO_80 = 'Age 00-59' UNION ALL SELECT '2015-2017' AS "Year", 'Carcinoma and Other' AS "Tumour Type", 'Stage 1-2' AS "Stage", 'All' AS "Region", 'All' AS "Sex", 'Age 60-69' AS "Age", SUM(statisticofinterest_pancreas) as statistic_of_interest FROM tumour_cohort_linked_pancreas WHERE DIAGNOSISYEAR BETWEEN 2015 AND 2017 AND MORPH_GROUP = 'Carcinoma and Other' AND STAGE_SPLIT23 = 'Stage 1-2' AND SPLIT_60_TO_80 = 'Age 60-69' UNION ALL SELECT '2015-2017' AS "Year", 'Carcinoma and Other' AS "Tumour Type", 'Stage 1-2' AS "Stage", 'All' AS "Region", 'Female' AS "Sex", 'Age 60-69' AS "Age", SUM(statisticofinterest_pancreas) as statistic_of_interest FROM tumour_cohort_linked_pancreas WHERE DIAGNOSISYEAR BETWEEN 2015 AND 2017 AND MORPH_GROUP = 'Carcinoma and Other' AND STAGE_SPLIT23 = 'Stage 1-2' AND SPLIT_60_TO_80 = 'Age 60-69' AND SEX = 'Female' UNION ALL SELECT '2015-2017' AS "Year", 'Carcinoma and Other' AS "Tumour Type", 'Stage 1-2' AS "Stage", 'All' AS "Region", 'Male' AS "Sex", 'Age 60-69' AS "Age", SUM(statisticofinterest_pancreas) as statistic_of_interest FROM tumour_cohort_linked_pancreas WHERE DIAGNOSISYEAR BETWEEN 2015 AND 2017 AND MORPH_GROUP = 'Carcinoma and Other' AND STAGE_SPLIT23 = 'Stage 1-2' AND SPLIT_60_TO_80 = 'Age 60-69' AND SEX = 'Male' UNION ALL SELECT '2015-2017' AS "Year", 'Carcinoma and Other' AS "Tumour Type", 'Stage 1-2' AS "Stage", 'All' AS "Region", 'All' AS "Sex", 'Age 70-79' AS "Age", SUM(statisticofinterest_pancreas) as statistic_of_interest FROM tumour_cohort_linked_pancreas WHERE DIAGNOSISYEAR BETWEEN 2015 AND 2017 AND MORPH_GROUP = 'Carcinoma and Other' AND STAGE_SPLIT23 = 'Stage 1-2' AND SPLIT_60_TO_80 = 'Age 70-79' UNION ALL SELECT '2015-2017' AS "Year", 'Carcinoma and Other' AS "Tumour Type", 'Stage 1-2' AS "Stage", 'All' AS "Region", 'Female' AS "Sex", 'Age 70-79' AS "Age", SUM(statisticofinterest_pancreas) as statistic_of_interest FROM tumour_cohort_linked_pancreas WHERE DIAGNOSISYEAR BETWEEN 2015 AND 2017 AND MORPH_GROUP = 'Carcinoma and Other' AND STAGE_SPLIT23 = 'Stage 1-2' AND SPLIT_60_TO_80 = 'Age 70-79' AND SEX = 'Female' UNION ALL SELECT '2015-2017' AS "Year", 'Carcinoma and Other' AS "Tumour Type", 'Stage 1-2' AS "Stage", 'All' AS "Region", 'Male' AS "Sex", 'Age 70-79' AS "Age", SUM(statisticofinterest_pancreas) as statistic_of_interest FROM tumour_cohort_linked_pancreas WHERE DIAGNOSISYEAR BETWEEN 2015 AND 2017 AND MORPH_GROUP = 'Carcinoma and Other' AND STAGE_SPLIT23 = 'Stage 1-2' AND SPLIT_60_TO_80 = 'Age 70-79' AND SEX = 'Male' UNION ALL SELECT '2015-2017' AS "Year", 'Carcinoma and Other' AS "Tumour Type", 'Stage 1-2' AS "Stage", 'All' AS "Region", 'All' AS "Sex", 'Age 80+' AS "Age", SUM(statisticofinterest_pancreas) as statistic_of_interest FROM tumour_cohort_linked_pancreas WHERE DIAGNOSISYEAR BETWEEN 2015 AND 2017 AND MORPH_GROUP = 'Carcinoma and Other' AND STAGE_SPLIT23 = 'Stage 1-2' AND SPLIT_60_TO_80 = 'Age 80+' UNION ALL SELECT '2015-2017' AS "Year", 'Carcinoma and Other' AS "Tumour Type", 'Stage 1-2' AS "Stage", 'All' AS "Region", 'Female' AS "Sex", 'Age 80+' AS "Age", SUM(statisticofinterest_pancreas) as statistic_of_interest FROM tumour_cohort_linked_pancreas WHERE DIAGNOSISYEAR BETWEEN 2015 AND 2017 AND MORPH_GROUP = 'Carcinoma and Other' AND STAGE_SPLIT23 = 'Stage 1-2' AND SPLIT_60_TO_80 = 'Age 80+' AND SEX = 'Female' UNION ALL SELECT '2015-2017' AS "Year", 'Carcinoma and Other' AS "Tumour Type", 'Stage 1-2' AS "Stage", 'All' AS "Region", 'Male' AS "Sex", 'Age 80+' AS "Age", SUM(statisticofinterest_pancreas) as statistic_of_interest FROM tumour_cohort_linked_pancreas WHERE DIAGNOSISYEAR BETWEEN 2015 AND 2017 AND MORPH_GROUP = 'Carcinoma and Other' AND STAGE_SPLIT23 = 'Stage 1-2' AND SPLIT_60_TO_80 = 'Age 80+' AND SEX = 'Male' UNION ALL SELECT '2015-2017' AS "Year", 'Carcinoma and Other' AS "Tumour Type", 'Stage 3' AS "Stage", 'All' AS "Region", 'All' AS "Sex", 'All' AS "Age", SUM(statisticofinterest_pancreas) as statistic_of_interest FROM tumour_cohort_linked_pancreas WHERE DIAGNOSISYEAR BETWEEN 2015 AND 2017 AND MORPH_GROUP = 'Carcinoma and Other' AND STAGE_SPLIT23 = 'Stage 3' UNION ALL SELECT '2015-2017' AS "Year", 'Carcinoma and Other' AS "Tumour Type", 'Stage 3' AS "Stage", 'All' AS "Region", 'All' AS "Sex", 'Age 00-59' AS "Age", SUM(statisticofinterest_pancreas) as statistic_of_interest FROM tumour_cohort_linked_pancreas WHERE DIAGNOSISYEAR BETWEEN 2015 AND 2017 AND MORPH_GROUP = 'Carcinoma and Other' AND STAGE_SPLIT23 = 'Stage 3' AND SPLIT_60_70 = 'Age 00-59' UNION ALL SELECT '2015-2017' AS "Year", 'Carcinoma and Other' AS "Tumour Type", 'Stage 3' AS "Stage", 'All' AS "Region", 'All' AS "Sex", 'Age 60-69' AS "Age", SUM(statisticofinterest_pancreas) as statistic_of_interest FROM tumour_cohort_linked_pancreas WHERE DIAGNOSISYEAR BETWEEN 2015 AND 2017 AND MORPH_GROUP = 'Carcinoma and Other' AND STAGE_SPLIT23 = 'Stage 3' AND SPLIT_60_70 = 'Age 60-69' UNION ALL SELECT '2015-2017' AS "Year", 'Carcinoma and Other' AS "Tumour Type", 'Stage 3' AS "Stage", 'All' AS "Region", 'All' AS "Sex", 'Age 70+' AS "Age", SUM(statisticofinterest_pancreas) as statistic_of_interest FROM tumour_cohort_linked_pancreas WHERE DIAGNOSISYEAR BETWEEN 2015 AND 2017 AND MORPH_GROUP = 'Carcinoma and Other' AND STAGE_SPLIT23 = 'Stage 3' AND SPLIT_60_70 = 'Age 70+' UNION ALL SELECT '2015-2017' AS "Year", 'Carcinoma and Other' AS "Tumour Type", 'Stage 3' AS "Stage", 'All' AS "Region", 'Female' AS "Sex", 'Age 70+' AS "Age", SUM(statisticofinterest_pancreas) as statistic_of_interest FROM tumour_cohort_linked_pancreas WHERE DIAGNOSISYEAR BETWEEN 2015 AND 2017 AND MORPH_GROUP = 'Carcinoma and Other' AND STAGE_SPLIT23 = 'Stage 3' AND SPLIT_60_70 = 'Age 70+' AND SEX = 'Female' UNION ALL SELECT '2015-2017' AS "Year", 'Carcinoma and Other' AS "Tumour Type", 'Stage 3' AS "Stage", 'All' AS "Region", 'Male' AS "Sex", 'Age 70+' AS "Age", SUM(statisticofinterest_pancreas) as statistic_of_interest FROM tumour_cohort_linked_pancreas WHERE DIAGNOSISYEAR BETWEEN 2015 AND 2017 AND MORPH_GROUP = 'Carcinoma and Other' AND STAGE_SPLIT23 = 'Stage 3' AND SPLIT_60_70 = 'Age 70+' AND SEX = 'Male' UNION ALL SELECT '2015-2017' AS "Year", 'Carcinoma and Other' AS "Tumour Type", 'Stage 4' AS "Stage", 'All' AS "Region", 'All' AS "Sex", 'All' AS "Age", SUM(statisticofinterest_pancreas) as statistic_of_interest FROM tumour_cohort_linked_pancreas WHERE DIAGNOSISYEAR BETWEEN 2015 AND 2017 AND MORPH_GROUP = 'Carcinoma and Other' AND STAGE_SPLIT23 = 'Stage 4' UNION ALL SELECT '2015-2017' AS "Year", 'Carcinoma and Other' AS "Tumour Type", 'Stage 4' AS "Stage", 'All' AS "Region", 'All' AS "Sex", 'Age 00-49' AS "Age", SUM(statisticofinterest_pancreas) as statistic_of_interest FROM tumour_cohort_linked_pancreas WHERE DIAGNOSISYEAR BETWEEN 2015 AND 2017 AND MORPH_GROUP = 'Carcinoma and Other' AND STAGE_SPLIT23 = 'Stage 4' AND SPLIT_50_TO_80 = 'Age 00-49' UNION ALL SELECT '2015-2017' AS "Year", 'Carcinoma and Other' AS "Tumour Type", 'Stage 4' AS "Stage", 'All' AS "Region", 'All' AS "Sex", 'Age 50-59' AS "Age", SUM(statisticofinterest_pancreas) as statistic_of_interest FROM tumour_cohort_linked_pancreas WHERE DIAGNOSISYEAR BETWEEN 2015 AND 2017 AND MORPH_GROUP = 'Carcinoma and Other' AND STAGE_SPLIT23 = 'Stage 4' AND SPLIT_50_TO_80 = 'Age 50-59' UNION ALL SELECT '2015-2017' AS "Year", 'Carcinoma and Other' AS "Tumour Type", 'Stage 4' AS "Stage", 'All' AS "Region", 'All' AS "Sex", 'Age 60-69' AS "Age", SUM(statisticofinterest_pancreas) as statistic_of_interest FROM tumour_cohort_linked_pancreas WHERE DIAGNOSISYEAR BETWEEN 2015 AND 2017 AND MORPH_GROUP = 'Carcinoma and Other' AND STAGE_SPLIT23 = 'Stage 4' AND SPLIT_50_TO_80 = 'Age 60-69' UNION ALL SELECT '2015-2017' AS "Year", 'Carcinoma and Other' AS "Tumour Type", 'Stage 4' AS "Stage", 'London' AS "Region", 'All' AS "Sex", 'Age 60-69' AS "Age", SUM(statisticofinterest_pancreas) as statistic_of_interest FROM tumour_cohort_linked_pancreas WHERE DIAGNOSISYEAR BETWEEN 2015 AND 2017 AND MORPH_GROUP = 'Carcinoma and Other' AND STAGE_SPLIT23 = 'Stage 4' AND SPLIT_50_TO_80 = 'Age 60-69' AND REGION = 'London' UNION ALL SELECT '2015-2017' AS "Year", 'Carcinoma and Other' AS "Tumour Type", 'Stage 4' AS "Stage", 'Midlands and East of England' AS "Region", 'All' AS "Sex", 'Age 60-69' AS "Age", SUM(statisticofinterest_pancreas) as statistic_of_interest FROM tumour_cohort_linked_pancreas WHERE DIAGNOSISYEAR BETWEEN 2015 AND 2017 AND MORPH_GROUP = 'Carcinoma and Other' AND STAGE_SPLIT23 = 'Stage 4' AND SPLIT_50_TO_80 = 'Age 60-69' AND REGION = 'Midlands and East of England' UNION ALL SELECT '2015-2017' AS "Year", 'Carcinoma and Other' AS "Tumour Type", 'Stage 4' AS "Stage", 'Midlands and East of England' AS "Region", 'Female' AS "Sex", 'Age 60-69' AS "Age", SUM(statisticofinterest_pancreas) as statistic_of_interest FROM tumour_cohort_linked_pancreas WHERE DIAGNOSISYEAR BETWEEN 2015 AND 2017 AND MORPH_GROUP = 'Carcinoma and Other' AND STAGE_SPLIT23 = 'Stage 4' AND SPLIT_50_TO_80 = 'Age 60-69' AND REGION = 'Midlands and East of England' AND SEX = 'Female' UNION ALL SELECT '2015-2017' AS "Year", 'Carcinoma and Other' AS "Tumour Type", 'Stage 4' AS "Stage", 'Midlands and East of England' AS "Region", 'Male' AS "Sex", 'Age 60-69' AS "Age", SUM(statisticofinterest_pancreas) as statistic_of_interest FROM tumour_cohort_linked_pancreas WHERE DIAGNOSISYEAR BETWEEN 2015 AND 2017 AND MORPH_GROUP = 'Carcinoma and Other' AND STAGE_SPLIT23 = 'Stage 4' AND SPLIT_50_TO_80 = 'Age 60-69' AND REGION = 'Midlands and East of England' AND SEX = 'Male' UNION ALL SELECT '2015-2017' AS "Year", 'Carcinoma and Other' AS "Tumour Type", 'Stage 4' AS "Stage", 'North of England' AS "Region", 'All' AS "Sex", 'Age 60-69' AS "Age", SUM(statisticofinterest_pancreas) as statistic_of_interest FROM tumour_cohort_linked_pancreas WHERE DIAGNOSISYEAR BETWEEN 2015 AND 2017 AND MORPH_GROUP = 'Carcinoma and Other' AND STAGE_SPLIT23 = 'Stage 4' AND SPLIT_50_TO_80 = 'Age 60-69' AND REGION = 'North of England' UNION ALL SELECT '2015-2017' AS "Year", 'Carcinoma and Other' AS "Tumour Type", 'Stage 4' AS "Stage", 'North of England' AS "Region", 'Female' AS "Sex", 'Age 60-69' AS "Age", SUM(statisticofinterest_pancreas) as statistic_of_interest FROM tumour_cohort_linked_pancreas WHERE DIAGNOSISYEAR BETWEEN 2015 AND 2017 AND MORPH_GROUP = 'Carcinoma and Other' AND STAGE_SPLIT23 = 'Stage 4' AND SPLIT_50_TO_80 = 'Age 60-69' AND REGION = 'North of England' AND SEX = 'Female' UNION ALL SELECT '2015-2017' AS "Year", 'Carcinoma and Other' AS "Tumour Type", 'Stage 4' AS "Stage", 'North of England' AS "Region", 'Male' AS "Sex", 'Age 60-69' AS "Age", SUM(statisticofinterest_pancreas) as statistic_of_interest FROM tumour_cohort_linked_pancreas WHERE DIAGNOSISYEAR BETWEEN 2015 AND 2017 AND MORPH_GROUP = 'Carcinoma and Other' AND STAGE_SPLIT23 = 'Stage 4' AND SPLIT_50_TO_80 = 'Age 60-69' AND REGION = 'North of England' AND SEX = 'Male' UNION ALL SELECT '2015-2017' AS "Year", 'Carcinoma and Other' AS "Tumour Type", 'Stage 4' AS "Stage", 'South of England' AS "Region", 'All' AS "Sex", 'Age 60-69' AS "Age", SUM(statisticofinterest_pancreas) as statistic_of_interest FROM tumour_cohort_linked_pancreas WHERE DIAGNOSISYEAR BETWEEN 2015 AND 2017 AND MORPH_GROUP = 'Carcinoma and Other' AND STAGE_SPLIT23 = 'Stage 4' AND SPLIT_50_TO_80 = 'Age 60-69' AND REGION = 'South of England' UNION ALL SELECT '2015-2017' AS "Year", 'Carcinoma and Other' AS "Tumour Type", 'Stage 4' AS "Stage", 'South of England' AS "Region", 'Female' AS "Sex", 'Age 60-69' AS "Age", SUM(statisticofinterest_pancreas) as statistic_of_interest FROM tumour_cohort_linked_pancreas WHERE DIAGNOSISYEAR BETWEEN 2015 AND 2017 AND MORPH_GROUP = 'Carcinoma and Other' AND STAGE_SPLIT23 = 'Stage 4' AND SPLIT_50_TO_80 = 'Age 60-69' AND REGION = 'South of England' AND SEX = 'Female' UNION ALL SELECT '2015-2017' AS "Year", 'Carcinoma and Other' AS "Tumour Type", 'Stage 4' AS "Stage", 'South of England' AS "Region", 'Male' AS "Sex", 'Age 60-69' AS "Age", SUM(statisticofinterest_pancreas) as statistic_of_interest FROM tumour_cohort_linked_pancreas WHERE DIAGNOSISYEAR BETWEEN 2015 AND 2017 AND MORPH_GROUP = 'Carcinoma and Other' AND STAGE_SPLIT23 = 'Stage 4' AND SPLIT_50_TO_80 = 'Age 60-69' AND REGION = 'South of England' AND SEX = 'Male' UNION ALL SELECT '2015-2017' AS "Year", 'Carcinoma and Other' AS "Tumour Type", 'Stage 4' AS "Stage", 'All' AS "Region", 'All' AS "Sex", 'Age 70-79' AS "Age", SUM(statisticofinterest_pancreas) as statistic_of_interest FROM tumour_cohort_linked_pancreas WHERE DIAGNOSISYEAR BETWEEN 2015 AND 2017 AND MORPH_GROUP = 'Carcinoma and Other' AND STAGE_SPLIT23 = 'Stage 4' AND SPLIT_50_TO_80 = 'Age 70-79' UNION ALL SELECT '2015-2017' AS "Year", 'Carcinoma and Other' AS "Tumour Type", 'Stage 4' AS "Stage", 'London' AS "Region", 'All' AS "Sex", 'Age 70-79' AS "Age", SUM(statisticofinterest_pancreas) as statistic_of_interest FROM tumour_cohort_linked_pancreas WHERE DIAGNOSISYEAR BETWEEN 2015 AND 2017 AND MORPH_GROUP = 'Carcinoma and Other' AND STAGE_SPLIT23 = 'Stage 4' AND SPLIT_50_TO_80 = 'Age 70-79' AND REGION = 'London' UNION ALL SELECT '2015-2017' AS "Year", 'Carcinoma and Other' AS "Tumour Type", 'Stage 4' AS "Stage", 'Midlands and East of England' AS "Region", 'All' AS "Sex", 'Age 70-79' AS "Age", SUM(statisticofinterest_pancreas) as statistic_of_interest FROM tumour_cohort_linked_pancreas WHERE DIAGNOSISYEAR BETWEEN 2015 AND 2017 AND MORPH_GROUP = 'Carcinoma and Other' AND STAGE_SPLIT23 = 'Stage 4' AND SPLIT_50_TO_80 = 'Age 70-79' AND REGION = 'Midlands and East of England' UNION ALL SELECT '2015-2017' AS "Year", 'Carcinoma and Other' AS "Tumour Type", 'Stage 4' AS "Stage", 'Midlands and East of England' AS "Region", 'Female' AS "Sex", 'Age 70-79' AS "Age", SUM(statisticofinterest_pancreas) as statistic_of_interest FROM tumour_cohort_linked_pancreas WHERE DIAGNOSISYEAR BETWEEN 2015 AND 2017 AND MORPH_GROUP = 'Carcinoma and Other' AND STAGE_SPLIT23 = 'Stage 4' AND SPLIT_50_TO_80 = 'Age 70-79' AND REGION = 'Midlands and East of England' AND SEX = 'Female' UNION ALL SELECT '2015-2017' AS "Year", 'Carcinoma and Other' AS "Tumour Type", 'Stage 4' AS "Stage", 'Midlands and East of England' AS "Region", 'Male' AS "Sex", 'Age 70-79' AS "Age", SUM(statisticofinterest_pancreas) as statistic_of_interest FROM tumour_cohort_linked_pancreas WHERE DIAGNOSISYEAR BETWEEN 2015 AND 2017 AND MORPH_GROUP = 'Carcinoma and Other' AND STAGE_SPLIT23 = 'Stage 4' AND SPLIT_50_TO_80 = 'Age 70-79' AND REGION = 'Midlands and East of England' AND SEX = 'Male' UNION ALL SELECT '2015-2017' AS "Year", 'Carcinoma and Other' AS "Tumour Type", 'Stage 4' AS "Stage", 'North of England' AS "Region", 'All' AS "Sex", 'Age 70-79' AS "Age", SUM(statisticofinterest_pancreas) as statistic_of_interest FROM tumour_cohort_linked_pancreas WHERE DIAGNOSISYEAR BETWEEN 2015 AND 2017 AND MORPH_GROUP = 'Carcinoma and Other' AND STAGE_SPLIT23 = 'Stage 4' AND SPLIT_50_TO_80 = 'Age 70-79' AND REGION = 'North of England' UNION ALL SELECT '2015-2017' AS "Year", 'Carcinoma and Other' AS "Tumour Type", 'Stage 4' AS "Stage", 'North of England' AS "Region", 'Female' AS "Sex", 'Age 70-79' AS "Age", SUM(statisticofinterest_pancreas) as statistic_of_interest FROM tumour_cohort_linked_pancreas WHERE DIAGNOSISYEAR BETWEEN 2015 AND 2017 AND MORPH_GROUP = 'Carcinoma and Other' AND STAGE_SPLIT23 = 'Stage 4' AND SPLIT_50_TO_80 = 'Age 70-79' AND REGION = 'North of England' AND SEX = 'Female' UNION ALL SELECT '2015-2017' AS "Year", 'Carcinoma and Other' AS "Tumour Type", 'Stage 4' AS "Stage", 'North of England' AS "Region", 'Male' AS "Sex", 'Age 70-79' AS "Age", SUM(statisticofinterest_pancreas) as statistic_of_interest FROM tumour_cohort_linked_pancreas WHERE DIAGNOSISYEAR BETWEEN 2015 AND 2017 AND MORPH_GROUP = 'Carcinoma and Other' AND STAGE_SPLIT23 = 'Stage 4' AND SPLIT_50_TO_80 = 'Age 70-79' AND REGION = 'North of England' AND SEX = 'Male' UNION ALL SELECT '2015-2017' AS "Year", 'Carcinoma and Other' AS "Tumour Type", 'Stage 4' AS "Stage", 'South of England' AS "Region", 'All' AS "Sex", 'Age 70-79' AS "Age", SUM(statisticofinterest_pancreas) as statistic_of_interest FROM tumour_cohort_linked_pancreas WHERE DIAGNOSISYEAR BETWEEN 2015 AND 2017 AND MORPH_GROUP = 'Carcinoma and Other' AND STAGE_SPLIT23 = 'Stage 4' AND SPLIT_50_TO_80 = 'Age 70-79' AND REGION = 'South of England' UNION ALL SELECT '2015-2017' AS "Year", 'Carcinoma and Other' AS "Tumour Type", 'Stage 4' AS "Stage", 'South of England' AS "Region", 'Female' AS "Sex", 'Age 70-79' AS "Age", SUM(statisticofinterest_pancreas) as statistic_of_interest FROM tumour_cohort_linked_pancreas WHERE DIAGNOSISYEAR BETWEEN 2015 AND 2017 AND MORPH_GROUP = 'Carcinoma and Other' AND STAGE_SPLIT23 = 'Stage 4' AND SPLIT_50_TO_80 = 'Age 70-79' AND REGION = 'South of England' AND SEX = 'Female' UNION ALL SELECT '2015-2017' AS "Year", 'Carcinoma and Other' AS "Tumour Type", 'Stage 4' AS "Stage", 'South of England' AS "Region", 'Male' AS "Sex", 'Age 70-79' AS "Age", SUM(statisticofinterest_pancreas) as statistic_of_interest FROM tumour_cohort_linked_pancreas WHERE DIAGNOSISYEAR BETWEEN 2015 AND 2017 AND MORPH_GROUP = 'Carcinoma and Other' AND STAGE_SPLIT23 = 'Stage 4' AND SPLIT_50_TO_80 = 'Age 70-79' AND REGION = 'South of England' AND SEX = 'Male' UNION ALL SELECT '2015-2017' AS "Year", 'Carcinoma and Other' AS "Tumour Type", 'Stage 4' AS "Stage", 'All' AS "Region", 'All' AS "Sex", 'Age 80+' AS "Age", SUM(statisticofinterest_pancreas) as statistic_of_interest FROM tumour_cohort_linked_pancreas WHERE DIAGNOSISYEAR BETWEEN 2015 AND 2017 AND MORPH_GROUP = 'Carcinoma and Other' AND STAGE_SPLIT23 = 'Stage 4' AND SPLIT_50_TO_80 = 'Age 80+' UNION ALL SELECT '2015-2017' AS "Year", 'Carcinoma and Other' AS "Tumour Type", 'Stage 4' AS "Stage", 'London' AS "Region", 'All' AS "Sex", 'Age 80+' AS "Age", SUM(statisticofinterest_pancreas) as statistic_of_interest FROM tumour_cohort_linked_pancreas WHERE DIAGNOSISYEAR BETWEEN 2015 AND 2017 AND MORPH_GROUP = 'Carcinoma and Other' AND STAGE_SPLIT23 = 'Stage 4' AND SPLIT_50_TO_80 = 'Age 80+' AND REGION = 'London' UNION ALL SELECT '2015-2017' AS "Year", 'Carcinoma and Other' AS "Tumour Type", 'Stage 4' AS "Stage", 'Midlands and East of England' AS "Region", 'All' AS "Sex", 'Age 80+' AS "Age", SUM(statisticofinterest_pancreas) as statistic_of_interest FROM tumour_cohort_linked_pancreas WHERE DIAGNOSISYEAR BETWEEN 2015 AND 2017 AND MORPH_GROUP = 'Carcinoma and Other' AND STAGE_SPLIT23 = 'Stage 4' AND SPLIT_50_TO_80 = 'Age 80+' AND REGION = 'Midlands and East of England' UNION ALL SELECT '2015-2017' AS "Year", 'Carcinoma and Other' AS "Tumour Type", 'Stage 4' AS "Stage", 'Midlands and East of England' AS "Region", 'Female' AS "Sex", 'Age 80+' AS "Age", SUM(statisticofinterest_pancreas) as statistic_of_interest FROM tumour_cohort_linked_pancreas WHERE DIAGNOSISYEAR BETWEEN 2015 AND 2017 AND MORPH_GROUP = 'Carcinoma and Other' AND STAGE_SPLIT23 = 'Stage 4' AND SPLIT_50_TO_80 = 'Age 80+' AND REGION = 'Midlands and East of England' AND SEX = 'Female' UNION ALL SELECT '2015-2017' AS "Year", 'Carcinoma and Other' AS "Tumour Type", 'Stage 4' AS "Stage", 'Midlands and East of England' AS "Region", 'Male' AS "Sex", 'Age 80+' AS "Age", SUM(statisticofinterest_pancreas) as statistic_of_interest FROM tumour_cohort_linked_pancreas WHERE DIAGNOSISYEAR BETWEEN 2015 AND 2017 AND MORPH_GROUP = 'Carcinoma and Other' AND STAGE_SPLIT23 = 'Stage 4' AND SPLIT_50_TO_80 = 'Age 80+' AND REGION = 'Midlands and East of England' AND SEX = 'Male' UNION ALL SELECT '2015-2017' AS "Year", 'Carcinoma and Other' AS "Tumour Type", 'Stage 4' AS "Stage", 'North of England' AS "Region", 'All' AS "Sex", 'Age 80+' AS "Age", SUM(statisticofinterest_pancreas) as statistic_of_interest FROM tumour_cohort_linked_pancreas WHERE DIAGNOSISYEAR BETWEEN 2015 AND 2017 AND MORPH_GROUP = 'Carcinoma and Other' AND STAGE_SPLIT23 = 'Stage 4' AND SPLIT_50_TO_80 = 'Age 80+' AND REGION = 'North of England' UNION ALL SELECT '2015-2017' AS "Year", 'Carcinoma and Other' AS "Tumour Type", 'Stage 4' AS "Stage", 'North of England' AS "Region", 'Female' AS "Sex", 'Age 80+' AS "Age", SUM(statisticofinterest_pancreas) as statistic_of_interest FROM tumour_cohort_linked_pancreas WHERE DIAGNOSISYEAR BETWEEN 2015 AND 2017 AND MORPH_GROUP = 'Carcinoma and Other' AND STAGE_SPLIT23 = 'Stage 4' AND SPLIT_50_TO_80 = 'Age 80+' AND REGION = 'North of England' AND SEX = 'Female' UNION ALL SELECT '2015-2017' AS "Year", 'Carcinoma and Other' AS "Tumour Type", 'Stage 4' AS "Stage", 'North of England' AS "Region", 'Male' AS "Sex", 'Age 80+' AS "Age", SUM(statisticofinterest_pancreas) as statistic_of_interest FROM tumour_cohort_linked_pancreas WHERE DIAGNOSISYEAR BETWEEN 2015 AND 2017 AND MORPH_GROUP = 'Carcinoma and Other' AND STAGE_SPLIT23 = 'Stage 4' AND SPLIT_50_TO_80 = 'Age 80+' AND REGION = 'North of England' AND SEX = 'Male' UNION ALL SELECT '2015-2017' AS "Year", 'Carcinoma and Other' AS "Tumour Type", 'Stage 4' AS "Stage", 'South of England' AS "Region", 'All' AS "Sex", 'Age 80+' AS "Age", SUM(statisticofinterest_pancreas) as statistic_of_interest FROM tumour_cohort_linked_pancreas WHERE DIAGNOSISYEAR BETWEEN 2015 AND 2017 AND MORPH_GROUP = 'Carcinoma and Other' AND STAGE_SPLIT23 = 'Stage 4' AND SPLIT_50_TO_80 = 'Age 80+' AND REGION = 'South of England' UNION ALL SELECT '2015-2017' AS "Year", 'Carcinoma and Other' AS "Tumour Type", 'Stage 4' AS "Stage", 'South of England' AS "Region", 'Female' AS "Sex", 'Age 80+' AS "Age", SUM(statisticofinterest_pancreas) as statistic_of_interest FROM tumour_cohort_linked_pancreas WHERE DIAGNOSISYEAR BETWEEN 2015 AND 2017 AND MORPH_GROUP = 'Carcinoma and Other' AND STAGE_SPLIT23 = 'Stage 4' AND SPLIT_50_TO_80 = 'Age 80+' AND REGION = 'South of England' AND SEX = 'Female' UNION ALL SELECT '2015-2017' AS "Year", 'Carcinoma and Other' AS "Tumour Type", 'Stage 4' AS "Stage", 'South of England' AS "Region", 'Male' AS "Sex", 'Age 80+' AS "Age", SUM(statisticofinterest_pancreas) as statistic_of_interest FROM tumour_cohort_linked_pancreas WHERE DIAGNOSISYEAR BETWEEN 2015 AND 2017 AND MORPH_GROUP = 'Carcinoma and Other' AND STAGE_SPLIT23 = 'Stage 4' AND SPLIT_50_TO_80 = 'Age 80+' AND REGION = 'South of England' AND SEX = 'Male' UNION ALL SELECT '2015-2017' AS "Year", 'Carcinoma and Other' AS "Tumour Type", 'Stage unknown' AS "Stage", 'All' AS "Region", 'All' AS "Sex", 'All' AS "Age", SUM(statisticofinterest_pancreas) as statistic_of_interest FROM tumour_cohort_linked_pancreas WHERE DIAGNOSISYEAR BETWEEN 2015 AND 2017 AND MORPH_GROUP = 'Carcinoma and Other' AND STAGE_SPLIT23 = 'Stage unknown' UNION ALL SELECT '2015-2017' AS "Year", 'Carcinoma and Other' AS "Tumour Type", 'Stage unknown' AS "Stage", 'All' AS "Region", 'All' AS "Sex", 'Age 00-59' AS "Age", SUM(statisticofinterest_pancreas) as statistic_of_interest FROM tumour_cohort_linked_pancreas WHERE DIAGNOSISYEAR BETWEEN 2015 AND 2017 AND MORPH_GROUP = 'Carcinoma and Other' AND STAGE_SPLIT23 = 'Stage unknown' AND SPLIT_60_TO_80 = 'Age 00-59' UNION ALL SELECT '2015-2017' AS "Year", 'Carcinoma and Other' AS "Tumour Type", 'Stage unknown' AS "Stage", 'All' AS "Region", 'All' AS "Sex", 'Age 60-69' AS "Age", SUM(statisticofinterest_pancreas) as statistic_of_interest FROM tumour_cohort_linked_pancreas WHERE DIAGNOSISYEAR BETWEEN 2015 AND 2017 AND MORPH_GROUP = 'Carcinoma and Other' AND STAGE_SPLIT23 = 'Stage unknown' AND SPLIT_60_TO_80 = 'Age 60-69' UNION ALL SELECT '2015-2017' AS "Year", 'Carcinoma and Other' AS "Tumour Type", 'Stage unknown' AS "Stage", 'All' AS "Region", 'Female' AS "Sex", 'Age 60-69' AS "Age", SUM(statisticofinterest_pancreas) as statistic_of_interest FROM tumour_cohort_linked_pancreas WHERE DIAGNOSISYEAR BETWEEN 2015 AND 2017 AND MORPH_GROUP = 'Carcinoma and Other' AND STAGE_SPLIT23 = 'Stage unknown' AND SPLIT_60_TO_80 = 'Age 60-69' AND SEX = 'Female' UNION ALL SELECT '2015-2017' AS "Year", 'Carcinoma and Other' AS "Tumour Type", 'Stage unknown' AS "Stage", 'All' AS "Region", 'Male' AS "Sex", 'Age 60-69' AS "Age", SUM(statisticofinterest_pancreas) as statistic_of_interest FROM tumour_cohort_linked_pancreas WHERE DIAGNOSISYEAR BETWEEN 2015 AND 2017 AND MORPH_GROUP = 'Carcinoma and Other' AND STAGE_SPLIT23 = 'Stage unknown' AND SPLIT_60_TO_80 = 'Age 60-69' AND SEX = 'Male' UNION ALL SELECT '2015-2017' AS "Year", 'Carcinoma and Other' AS "Tumour Type", 'Stage unknown' AS "Stage", 'All' AS "Region", 'All' AS "Sex", 'Age 70-79' AS "Age", SUM(statisticofinterest_pancreas) as statistic_of_interest FROM tumour_cohort_linked_pancreas WHERE DIAGNOSISYEAR BETWEEN 2015 AND 2017 AND MORPH_GROUP = 'Carcinoma and Other' AND STAGE_SPLIT23 = 'Stage unknown' AND SPLIT_60_TO_80 = 'Age 70-79' UNION ALL SELECT '2015-2017' AS "Year", 'Carcinoma and Other' AS "Tumour Type", 'Stage unknown' AS "Stage", 'All' AS "Region", 'Female' AS "Sex", 'Age 70-79' AS "Age", SUM(statisticofinterest_pancreas) as statistic_of_interest FROM tumour_cohort_linked_pancreas WHERE DIAGNOSISYEAR BETWEEN 2015 AND 2017 AND MORPH_GROUP = 'Carcinoma and Other' AND STAGE_SPLIT23 = 'Stage unknown' AND SPLIT_60_TO_80 = 'Age 70-79' AND SEX = 'Female' UNION ALL SELECT '2015-2017' AS "Year", 'Carcinoma and Other' AS "Tumour Type", 'Stage unknown' AS "Stage", 'All' AS "Region", 'Male' AS "Sex", 'Age 70-79' AS "Age", SUM(statisticofinterest_pancreas) as statistic_of_interest FROM tumour_cohort_linked_pancreas WHERE DIAGNOSISYEAR BETWEEN 2015 AND 2017 AND MORPH_GROUP = 'Carcinoma and Other' AND STAGE_SPLIT23 = 'Stage unknown' AND SPLIT_60_TO_80 = 'Age 70-79' AND SEX = 'Male' UNION ALL SELECT '2015-2017' AS "Year", 'Carcinoma and Other' AS "Tumour Type", 'Stage unknown' AS "Stage", 'All' AS "Region", 'All' AS "Sex", 'Age 80+' AS "Age", SUM(statisticofinterest_pancreas) as statistic_of_interest FROM tumour_cohort_linked_pancreas WHERE DIAGNOSISYEAR BETWEEN 2015 AND 2017 AND MORPH_GROUP = 'Carcinoma and Other' AND STAGE_SPLIT23 = 'Stage unknown' AND SPLIT_60_TO_80 = 'Age 80+' UNION ALL SELECT '2015-2017' AS "Year", 'Carcinoma and Other' AS "Tumour Type", 'Stage unknown' AS "Stage", 'All' AS "Region", 'Female' AS "Sex", 'Age 80+' AS "Age", SUM(statisticofinterest_pancreas) as statistic_of_interest FROM tumour_cohort_linked_pancreas WHERE DIAGNOSISYEAR BETWEEN 2015 AND 2017 AND MORPH_GROUP = 'Carcinoma and Other' AND STAGE_SPLIT23 = 'Stage unknown' AND SPLIT_60_TO_80 = 'Age 80+' AND SEX = 'Female' UNION ALL SELECT '2015-2017' AS "Year", 'Carcinoma and Other' AS "Tumour Type", 'Stage unknown' AS "Stage", 'All' AS "Region", 'Male' AS "Sex", 'Age 80+' AS "Age", SUM(statisticofinterest_pancreas) as statistic_of_interest FROM tumour_cohort_linked_pancreas WHERE DIAGNOSISYEAR BETWEEN 2015 AND 2017 AND MORPH_GROUP = 'Carcinoma and Other' AND STAGE_SPLIT23 = 'Stage unknown' AND SPLIT_60_TO_80 = 'Age 80+' AND SEX = 'Male' UNION ALL SELECT '2015-2017' AS "Year", 'Neuroendocrine' AS "Tumour Type", 'All' AS "Stage", 'All' AS "Region", 'All' AS "Sex", 'All' AS "Age", SUM(statisticofinterest_pancreas) as statistic_of_interest FROM tumour_cohort_linked_pancreas WHERE DIAGNOSISYEAR BETWEEN 2015 AND 2017 AND MORPH_GROUP = 'Neuroendocrine' UNION ALL SELECT '2015-2017' AS "Year", 'Neuroendocrine' AS "Tumour Type", 'All' AS "Stage", 'All' AS "Region", 'All' AS "Sex", 'Age 00-49' AS "Age", SUM(statisticofinterest_pancreas) as statistic_of_interest FROM tumour_cohort_linked_pancreas WHERE DIAGNOSISYEAR BETWEEN 2015 AND 2017 AND MORPH_GROUP = 'Neuroendocrine' AND SPLIT_50_TO_70 = 'Age 00-49' UNION ALL SELECT '2015-2017' AS "Year", 'Neuroendocrine' AS "Tumour Type", 'All' AS "Stage", 'All' AS "Region", 'All' AS "Sex", 'Age 50-59' AS "Age", SUM(statisticofinterest_pancreas) as statistic_of_interest FROM tumour_cohort_linked_pancreas WHERE DIAGNOSISYEAR BETWEEN 2015 AND 2017 AND MORPH_GROUP = 'Neuroendocrine' AND SPLIT_50_TO_70 = 'Age 50-59' UNION ALL SELECT '2015-2017' AS "Year", 'Neuroendocrine' AS "Tumour Type", 'All' AS "Stage", 'All' AS "Region", 'All' AS "Sex", 'Age 60-69' AS "Age", SUM(statisticofinterest_pancreas) as statistic_of_interest FROM tumour_cohort_linked_pancreas WHERE DIAGNOSISYEAR BETWEEN 2015 AND 2017 AND MORPH_GROUP = 'Neuroendocrine' AND SPLIT_50_TO_70 = 'Age 60-69' UNION ALL SELECT '2015-2017' AS "Year", 'Neuroendocrine' AS "Tumour Type", 'All' AS "Stage", 'All' AS "Region", 'All' AS "Sex", 'Age 70+' AS "Age", SUM(statisticofinterest_pancreas) as statistic_of_interest FROM tumour_cohort_linked_pancreas WHERE DIAGNOSISYEAR BETWEEN 2015 AND 2017 AND MORPH_GROUP = 'Neuroendocrine' AND SPLIT_50_TO_70 = 'Age 70+' UNION ALL SELECT '2016-2018' AS "Year", 'All' AS "Tumour Type", 'All' AS "Stage", 'All' AS "Region", 'All' AS "Sex", 'All' AS "Age", SUM(statisticofinterest_pancreas) as statistic_of_interest FROM tumour_cohort_linked_pancreas WHERE DIAGNOSISYEAR BETWEEN 2016 AND 2018 UNION ALL SELECT '2016-2018' AS "Year", 'Carcinoma and Other' AS "Tumour Type", 'All' AS "Stage", 'All' AS "Region", 'All' AS "Sex", 'All' AS "Age", SUM(statisticofinterest_pancreas) as statistic_of_interest FROM tumour_cohort_linked_pancreas WHERE DIAGNOSISYEAR BETWEEN 2016 AND 2018 AND MORPH_GROUP = 'Carcinoma and Other' UNION ALL SELECT '2016-2018' AS "Year", 'Carcinoma and Other' AS "Tumour Type", 'Stage 1-2' AS "Stage", 'All' AS "Region", 'All' AS "Sex", 'All' AS "Age", SUM(statisticofinterest_pancreas) as statistic_of_interest FROM tumour_cohort_linked_pancreas WHERE DIAGNOSISYEAR BETWEEN 2016 AND 2018 AND MORPH_GROUP = 'Carcinoma and Other' AND STAGE_SPLIT23 = 'Stage 1-2' UNION ALL SELECT '2016-2018' AS "Year", 'Carcinoma and Other' AS "Tumour Type", 'Stage 1-2' AS "Stage", 'All' AS "Region", 'All' AS "Sex", 'Age 00-59' AS "Age", SUM(statisticofinterest_pancreas) as statistic_of_interest FROM tumour_cohort_linked_pancreas WHERE DIAGNOSISYEAR BETWEEN 2016 AND 2018 AND MORPH_GROUP = 'Carcinoma and Other' AND STAGE_SPLIT23 = 'Stage 1-2' AND SPLIT_60_TO_80 = 'Age 00-59' UNION ALL SELECT '2016-2018' AS "Year", 'Carcinoma and Other' AS "Tumour Type", 'Stage 1-2' AS "Stage", 'All' AS "Region", 'All' AS "Sex", 'Age 60-69' AS "Age", SUM(statisticofinterest_pancreas) as statistic_of_interest FROM tumour_cohort_linked_pancreas WHERE DIAGNOSISYEAR BETWEEN 2016 AND 2018 AND MORPH_GROUP = 'Carcinoma and Other' AND STAGE_SPLIT23 = 'Stage 1-2' AND SPLIT_60_TO_80 = 'Age 60-69' UNION ALL SELECT '2016-2018' AS "Year", 'Carcinoma and Other' AS "Tumour Type", 'Stage 1-2' AS "Stage", 'All' AS "Region", 'Female' AS "Sex", 'Age 60-69' AS "Age", SUM(statisticofinterest_pancreas) as statistic_of_interest FROM tumour_cohort_linked_pancreas WHERE DIAGNOSISYEAR BETWEEN 2016 AND 2018 AND MORPH_GROUP = 'Carcinoma and Other' AND STAGE_SPLIT23 = 'Stage 1-2' AND SPLIT_60_TO_80 = 'Age 60-69' AND SEX = 'Female' UNION ALL SELECT '2016-2018' AS "Year", 'Carcinoma and Other' AS "Tumour Type", 'Stage 1-2' AS "Stage", 'All' AS "Region", 'Male' AS "Sex", 'Age 60-69' AS "Age", SUM(statisticofinterest_pancreas) as statistic_of_interest FROM tumour_cohort_linked_pancreas WHERE DIAGNOSISYEAR BETWEEN 2016 AND 2018 AND MORPH_GROUP = 'Carcinoma and Other' AND STAGE_SPLIT23 = 'Stage 1-2' AND SPLIT_60_TO_80 = 'Age 60-69' AND SEX = 'Male' UNION ALL SELECT '2016-2018' AS "Year", 'Carcinoma and Other' AS "Tumour Type", 'Stage 1-2' AS "Stage", 'All' AS "Region", 'All' AS "Sex", 'Age 70-79' AS "Age", SUM(statisticofinterest_pancreas) as statistic_of_interest FROM tumour_cohort_linked_pancreas WHERE DIAGNOSISYEAR BETWEEN 2016 AND 2018 AND MORPH_GROUP = 'Carcinoma and Other' AND STAGE_SPLIT23 = 'Stage 1-2' AND SPLIT_60_TO_80 = 'Age 70-79' UNION ALL SELECT '2016-2018' AS "Year", 'Carcinoma and Other' AS "Tumour Type", 'Stage 1-2' AS "Stage", 'All' AS "Region", 'Female' AS "Sex", 'Age 70-79' AS "Age", SUM(statisticofinterest_pancreas) as statistic_of_interest FROM tumour_cohort_linked_pancreas WHERE DIAGNOSISYEAR BETWEEN 2016 AND 2018 AND MORPH_GROUP = 'Carcinoma and Other' AND STAGE_SPLIT23 = 'Stage 1-2' AND SPLIT_60_TO_80 = 'Age 70-79' AND SEX = 'Female' UNION ALL SELECT '2016-2018' AS "Year", 'Carcinoma and Other' AS "Tumour Type", 'Stage 1-2' AS "Stage", 'All' AS "Region", 'Male' AS "Sex", 'Age 70-79' AS "Age", SUM(statisticofinterest_pancreas) as statistic_of_interest FROM tumour_cohort_linked_pancreas WHERE DIAGNOSISYEAR BETWEEN 2016 AND 2018 AND MORPH_GROUP = 'Carcinoma and Other' AND STAGE_SPLIT23 = 'Stage 1-2' AND SPLIT_60_TO_80 = 'Age 70-79' AND SEX = 'Male' UNION ALL SELECT '2016-2018' AS "Year", 'Carcinoma and Other' AS "Tumour Type", 'Stage 1-2' AS "Stage", 'All' AS "Region", 'All' AS "Sex", 'Age 80+' AS "Age", SUM(statisticofinterest_pancreas) as statistic_of_interest FROM tumour_cohort_linked_pancreas WHERE DIAGNOSISYEAR BETWEEN 2016 AND 2018 AND MORPH_GROUP = 'Carcinoma and Other' AND STAGE_SPLIT23 = 'Stage 1-2' AND SPLIT_60_TO_80 = 'Age 80+' UNION ALL SELECT '2016-2018' AS "Year", 'Carcinoma and Other' AS "Tumour Type", 'Stage 1-2' AS "Stage", 'All' AS "Region", 'Female' AS "Sex", 'Age 80+' AS "Age", SUM(statisticofinterest_pancreas) as statistic_of_interest FROM tumour_cohort_linked_pancreas WHERE DIAGNOSISYEAR BETWEEN 2016 AND 2018 AND MORPH_GROUP = 'Carcinoma and Other' AND STAGE_SPLIT23 = 'Stage 1-2' AND SPLIT_60_TO_80 = 'Age 80+' AND SEX = 'Female' UNION ALL SELECT '2016-2018' AS "Year", 'Carcinoma and Other' AS "Tumour Type", 'Stage 1-2' AS "Stage", 'All' AS "Region", 'Male' AS "Sex", 'Age 80+' AS "Age", SUM(statisticofinterest_pancreas) as statistic_of_interest FROM tumour_cohort_linked_pancreas WHERE DIAGNOSISYEAR BETWEEN 2016 AND 2018 AND MORPH_GROUP = 'Carcinoma and Other' AND STAGE_SPLIT23 = 'Stage 1-2' AND SPLIT_60_TO_80 = 'Age 80+' AND SEX = 'Male' UNION ALL SELECT '2016-2018' AS "Year", 'Carcinoma and Other' AS "Tumour Type", 'Stage 3' AS "Stage", 'All' AS "Region", 'All' AS "Sex", 'All' AS "Age", SUM(statisticofinterest_pancreas) as statistic_of_interest FROM tumour_cohort_linked_pancreas WHERE DIAGNOSISYEAR BETWEEN 2016 AND 2018 AND MORPH_GROUP = 'Carcinoma and Other' AND STAGE_SPLIT23 = 'Stage 3' UNION ALL SELECT '2016-2018' AS "Year", 'Carcinoma and Other' AS "Tumour Type", 'Stage 3' AS "Stage", 'All' AS "Region", 'All' AS "Sex", 'Age 00-59' AS "Age", SUM(statisticofinterest_pancreas) as statistic_of_interest FROM tumour_cohort_linked_pancreas WHERE DIAGNOSISYEAR BETWEEN 2016 AND 2018 AND MORPH_GROUP = 'Carcinoma and Other' AND STAGE_SPLIT23 = 'Stage 3' AND SPLIT_60_70 = 'Age 00-59' UNION ALL SELECT '2016-2018' AS "Year", 'Carcinoma and Other' AS "Tumour Type", 'Stage 3' AS "Stage", 'All' AS "Region", 'All' AS "Sex", 'Age 60-69' AS "Age", SUM(statisticofinterest_pancreas) as statistic_of_interest FROM tumour_cohort_linked_pancreas WHERE DIAGNOSISYEAR BETWEEN 2016 AND 2018 AND MORPH_GROUP = 'Carcinoma and Other' AND STAGE_SPLIT23 = 'Stage 3' AND SPLIT_60_70 = 'Age 60-69' UNION ALL SELECT '2016-2018' AS "Year", 'Carcinoma and Other' AS "Tumour Type", 'Stage 3' AS "Stage", 'All' AS "Region", 'All' AS "Sex", 'Age 70+' AS "Age", SUM(statisticofinterest_pancreas) as statistic_of_interest FROM tumour_cohort_linked_pancreas WHERE DIAGNOSISYEAR BETWEEN 2016 AND 2018 AND MORPH_GROUP = 'Carcinoma and Other' AND STAGE_SPLIT23 = 'Stage 3' AND SPLIT_60_70 = 'Age 70+' UNION ALL SELECT '2016-2018' AS "Year", 'Carcinoma and Other' AS "Tumour Type", 'Stage 3' AS "Stage", 'All' AS "Region", 'Female' AS "Sex", 'Age 70+' AS "Age", SUM(statisticofinterest_pancreas) as statistic_of_interest FROM tumour_cohort_linked_pancreas WHERE DIAGNOSISYEAR BETWEEN 2016 AND 2018 AND MORPH_GROUP = 'Carcinoma and Other' AND STAGE_SPLIT23 = 'Stage 3' AND SPLIT_60_70 = 'Age 70+' AND SEX = 'Female' UNION ALL SELECT '2016-2018' AS "Year", 'Carcinoma and Other' AS "Tumour Type", 'Stage 3' AS "Stage", 'All' AS "Region", 'Male' AS "Sex", 'Age 70+' AS "Age", SUM(statisticofinterest_pancreas) as statistic_of_interest FROM tumour_cohort_linked_pancreas WHERE DIAGNOSISYEAR BETWEEN 2016 AND 2018 AND MORPH_GROUP = 'Carcinoma and Other' AND STAGE_SPLIT23 = 'Stage 3' AND SPLIT_60_70 = 'Age 70+' AND SEX = 'Male' UNION ALL SELECT '2016-2018' AS "Year", 'Carcinoma and Other' AS "Tumour Type", 'Stage 4' AS "Stage", 'All' AS "Region", 'All' AS "Sex", 'All' AS "Age", SUM(statisticofinterest_pancreas) as statistic_of_interest FROM tumour_cohort_linked_pancreas WHERE DIAGNOSISYEAR BETWEEN 2016 AND 2018 AND MORPH_GROUP = 'Carcinoma and Other' AND STAGE_SPLIT23 = 'Stage 4' UNION ALL SELECT '2016-2018' AS "Year", 'Carcinoma and Other' AS "Tumour Type", 'Stage 4' AS "Stage", 'All' AS "Region", 'All' AS "Sex", 'Age 00-49' AS "Age", SUM(statisticofinterest_pancreas) as statistic_of_interest FROM tumour_cohort_linked_pancreas WHERE DIAGNOSISYEAR BETWEEN 2016 AND 2018 AND MORPH_GROUP = 'Carcinoma and Other' AND STAGE_SPLIT23 = 'Stage 4' AND SPLIT_50_TO_80 = 'Age 00-49' UNION ALL SELECT '2016-2018' AS "Year", 'Carcinoma and Other' AS "Tumour Type", 'Stage 4' AS "Stage", 'All' AS "Region", 'All' AS "Sex", 'Age 50-59' AS "Age", SUM(statisticofinterest_pancreas) as statistic_of_interest FROM tumour_cohort_linked_pancreas WHERE DIAGNOSISYEAR BETWEEN 2016 AND 2018 AND MORPH_GROUP = 'Carcinoma and Other' AND STAGE_SPLIT23 = 'Stage 4' AND SPLIT_50_TO_80 = 'Age 50-59' UNION ALL SELECT '2016-2018' AS "Year", 'Carcinoma and Other' AS "Tumour Type", 'Stage 4' AS "Stage", 'All' AS "Region", 'All' AS "Sex", 'Age 60-69' AS "Age", SUM(statisticofinterest_pancreas) as statistic_of_interest FROM tumour_cohort_linked_pancreas WHERE DIAGNOSISYEAR BETWEEN 2016 AND 2018 AND MORPH_GROUP = 'Carcinoma and Other' AND STAGE_SPLIT23 = 'Stage 4' AND SPLIT_50_TO_80 = 'Age 60-69' UNION ALL SELECT '2016-2018' AS "Year", 'Carcinoma and Other' AS "Tumour Type", 'Stage 4' AS "Stage", 'London' AS "Region", 'All' AS "Sex", 'Age 60-69' AS "Age", SUM(statisticofinterest_pancreas) as statistic_of_interest FROM tumour_cohort_linked_pancreas WHERE DIAGNOSISYEAR BETWEEN 2016 AND 2018 AND MORPH_GROUP = 'Carcinoma and Other' AND STAGE_SPLIT23 = 'Stage 4' AND SPLIT_50_TO_80 = 'Age 60-69' AND REGION = 'London' UNION ALL SELECT '2016-2018' AS "Year", 'Carcinoma and Other' AS "Tumour Type", 'Stage 4' AS "Stage", 'Midlands and East of England' AS "Region", 'All' AS "Sex", 'Age 60-69' AS "Age", SUM(statisticofinterest_pancreas) as statistic_of_interest FROM tumour_cohort_linked_pancreas WHERE DIAGNOSISYEAR BETWEEN 2016 AND 2018 AND MORPH_GROUP = 'Carcinoma and Other' AND STAGE_SPLIT23 = 'Stage 4' AND SPLIT_50_TO_80 = 'Age 60-69' AND REGION = 'Midlands and East of England' UNION ALL SELECT '2016-2018' AS "Year", 'Carcinoma and Other' AS "Tumour Type", 'Stage 4' AS "Stage", 'Midlands and East of England' AS "Region", 'Female' AS "Sex", 'Age 60-69' AS "Age", SUM(statisticofinterest_pancreas) as statistic_of_interest FROM tumour_cohort_linked_pancreas WHERE DIAGNOSISYEAR BETWEEN 2016 AND 2018 AND MORPH_GROUP = 'Carcinoma and Other' AND STAGE_SPLIT23 = 'Stage 4' AND SPLIT_50_TO_80 = 'Age 60-69' AND REGION = 'Midlands and East of England' AND SEX = 'Female' UNION ALL SELECT '2016-2018' AS "Year", 'Carcinoma and Other' AS "Tumour Type", 'Stage 4' AS "Stage", 'Midlands and East of England' AS "Region", 'Male' AS "Sex", 'Age 60-69' AS "Age", SUM(statisticofinterest_pancreas) as statistic_of_interest FROM tumour_cohort_linked_pancreas WHERE DIAGNOSISYEAR BETWEEN 2016 AND 2018 AND MORPH_GROUP = 'Carcinoma and Other' AND STAGE_SPLIT23 = 'Stage 4' AND SPLIT_50_TO_80 = 'Age 60-69' AND REGION = 'Midlands and East of England' AND SEX = 'Male' UNION ALL SELECT '2016-2018' AS "Year", 'Carcinoma and Other' AS "Tumour Type", 'Stage 4' AS "Stage", 'North of England' AS "Region", 'All' AS "Sex", 'Age 60-69' AS "Age", SUM(statisticofinterest_pancreas) as statistic_of_interest FROM tumour_cohort_linked_pancreas WHERE DIAGNOSISYEAR BETWEEN 2016 AND 2018 AND MORPH_GROUP = 'Carcinoma and Other' AND STAGE_SPLIT23 = 'Stage 4' AND SPLIT_50_TO_80 = 'Age 60-69' AND REGION = 'North of England' UNION ALL SELECT '2016-2018' AS "Year", 'Carcinoma and Other' AS "Tumour Type", 'Stage 4' AS "Stage", 'North of England' AS "Region", 'Female' AS "Sex", 'Age 60-69' AS "Age", SUM(statisticofinterest_pancreas) as statistic_of_interest FROM tumour_cohort_linked_pancreas WHERE DIAGNOSISYEAR BETWEEN 2016 AND 2018 AND MORPH_GROUP = 'Carcinoma and Other' AND STAGE_SPLIT23 = 'Stage 4' AND SPLIT_50_TO_80 = 'Age 60-69' AND REGION = 'North of England' AND SEX = 'Female' UNION ALL SELECT '2016-2018' AS "Year", 'Carcinoma and Other' AS "Tumour Type", 'Stage 4' AS "Stage", 'North of England' AS "Region", 'Male' AS "Sex", 'Age 60-69' AS "Age", SUM(statisticofinterest_pancreas) as statistic_of_interest FROM tumour_cohort_linked_pancreas WHERE DIAGNOSISYEAR BETWEEN 2016 AND 2018 AND MORPH_GROUP = 'Carcinoma and Other' AND STAGE_SPLIT23 = 'Stage 4' AND SPLIT_50_TO_80 = 'Age 60-69' AND REGION = 'North of England' AND SEX = 'Male' UNION ALL SELECT '2016-2018' AS "Year", 'Carcinoma and Other' AS "Tumour Type", 'Stage 4' AS "Stage", 'South of England' AS "Region", 'All' AS "Sex", 'Age 60-69' AS "Age", SUM(statisticofinterest_pancreas) as statistic_of_interest FROM tumour_cohort_linked_pancreas WHERE DIAGNOSISYEAR BETWEEN 2016 AND 2018 AND MORPH_GROUP = 'Carcinoma and Other' AND STAGE_SPLIT23 = 'Stage 4' AND SPLIT_50_TO_80 = 'Age 60-69' AND REGION = 'South of England' UNION ALL SELECT '2016-2018' AS "Year", 'Carcinoma and Other' AS "Tumour Type", 'Stage 4' AS "Stage", 'South of England' AS "Region", 'Female' AS "Sex", 'Age 60-69' AS "Age", SUM(statisticofinterest_pancreas) as statistic_of_interest FROM tumour_cohort_linked_pancreas WHERE DIAGNOSISYEAR BETWEEN 2016 AND 2018 AND MORPH_GROUP = 'Carcinoma and Other' AND STAGE_SPLIT23 = 'Stage 4' AND SPLIT_50_TO_80 = 'Age 60-69' AND REGION = 'South of England' AND SEX = 'Female' UNION ALL SELECT '2016-2018' AS "Year", 'Carcinoma and Other' AS "Tumour Type", 'Stage 4' AS "Stage", 'South of England' AS "Region", 'Male' AS "Sex", 'Age 60-69' AS "Age", SUM(statisticofinterest_pancreas) as statistic_of_interest FROM tumour_cohort_linked_pancreas WHERE DIAGNOSISYEAR BETWEEN 2016 AND 2018 AND MORPH_GROUP = 'Carcinoma and Other' AND STAGE_SPLIT23 = 'Stage 4' AND SPLIT_50_TO_80 = 'Age 60-69' AND REGION = 'South of England' AND SEX = 'Male' UNION ALL SELECT '2016-2018' AS "Year", 'Carcinoma and Other' AS "Tumour Type", 'Stage 4' AS "Stage", 'All' AS "Region", 'All' AS "Sex", 'Age 70-79' AS "Age", SUM(statisticofinterest_pancreas) as statistic_of_interest FROM tumour_cohort_linked_pancreas WHERE DIAGNOSISYEAR BETWEEN 2016 AND 2018 AND MORPH_GROUP = 'Carcinoma and Other' AND STAGE_SPLIT23 = 'Stage 4' AND SPLIT_50_TO_80 = 'Age 70-79' UNION ALL SELECT '2016-2018' AS "Year", 'Carcinoma and Other' AS "Tumour Type", 'Stage 4' AS "Stage", 'London' AS "Region", 'All' AS "Sex", 'Age 70-79' AS "Age", SUM(statisticofinterest_pancreas) as statistic_of_interest FROM tumour_cohort_linked_pancreas WHERE DIAGNOSISYEAR BETWEEN 2016 AND 2018 AND MORPH_GROUP = 'Carcinoma and Other' AND STAGE_SPLIT23 = 'Stage 4' AND SPLIT_50_TO_80 = 'Age 70-79' AND REGION = 'London' UNION ALL SELECT '2016-2018' AS "Year", 'Carcinoma and Other' AS "Tumour Type", 'Stage 4' AS "Stage", 'Midlands and East of England' AS "Region", 'All' AS "Sex", 'Age 70-79' AS "Age", SUM(statisticofinterest_pancreas) as statistic_of_interest FROM tumour_cohort_linked_pancreas WHERE DIAGNOSISYEAR BETWEEN 2016 AND 2018 AND MORPH_GROUP = 'Carcinoma and Other' AND STAGE_SPLIT23 = 'Stage 4' AND SPLIT_50_TO_80 = 'Age 70-79' AND REGION = 'Midlands and East of England' UNION ALL SELECT '2016-2018' AS "Year", 'Carcinoma and Other' AS "Tumour Type", 'Stage 4' AS "Stage", 'Midlands and East of England' AS "Region", 'Female' AS "Sex", 'Age 70-79' AS "Age", SUM(statisticofinterest_pancreas) as statistic_of_interest FROM tumour_cohort_linked_pancreas WHERE DIAGNOSISYEAR BETWEEN 2016 AND 2018 AND MORPH_GROUP = 'Carcinoma and Other' AND STAGE_SPLIT23 = 'Stage 4' AND SPLIT_50_TO_80 = 'Age 70-79' AND REGION = 'Midlands and East of England' AND SEX = 'Female' UNION ALL SELECT '2016-2018' AS "Year", 'Carcinoma and Other' AS "Tumour Type", 'Stage 4' AS "Stage", 'Midlands and East of England' AS "Region", 'Male' AS "Sex", 'Age 70-79' AS "Age", SUM(statisticofinterest_pancreas) as statistic_of_interest FROM tumour_cohort_linked_pancreas WHERE DIAGNOSISYEAR BETWEEN 2016 AND 2018 AND MORPH_GROUP = 'Carcinoma and Other' AND STAGE_SPLIT23 = 'Stage 4' AND SPLIT_50_TO_80 = 'Age 70-79' AND REGION = 'Midlands and East of England' AND SEX = 'Male' UNION ALL SELECT '2016-2018' AS "Year", 'Carcinoma and Other' AS "Tumour Type", 'Stage 4' AS "Stage", 'North of England' AS "Region", 'All' AS "Sex", 'Age 70-79' AS "Age", SUM(statisticofinterest_pancreas) as statistic_of_interest FROM tumour_cohort_linked_pancreas WHERE DIAGNOSISYEAR BETWEEN 2016 AND 2018 AND MORPH_GROUP = 'Carcinoma and Other' AND STAGE_SPLIT23 = 'Stage 4' AND SPLIT_50_TO_80 = 'Age 70-79' AND REGION = 'North of England' UNION ALL SELECT '2016-2018' AS "Year", 'Carcinoma and Other' AS "Tumour Type", 'Stage 4' AS "Stage", 'North of England' AS "Region", 'Female' AS "Sex", 'Age 70-79' AS "Age", SUM(statisticofinterest_pancreas) as statistic_of_interest FROM tumour_cohort_linked_pancreas WHERE DIAGNOSISYEAR BETWEEN 2016 AND 2018 AND MORPH_GROUP = 'Carcinoma and Other' AND STAGE_SPLIT23 = 'Stage 4' AND SPLIT_50_TO_80 = 'Age 70-79' AND REGION = 'North of England' AND SEX = 'Female' UNION ALL SELECT '2016-2018' AS "Year", 'Carcinoma and Other' AS "Tumour Type", 'Stage 4' AS "Stage", 'North of England' AS "Region", 'Male' AS "Sex", 'Age 70-79' AS "Age", SUM(statisticofinterest_pancreas) as statistic_of_interest FROM tumour_cohort_linked_pancreas WHERE DIAGNOSISYEAR BETWEEN 2016 AND 2018 AND MORPH_GROUP = 'Carcinoma and Other' AND STAGE_SPLIT23 = 'Stage 4' AND SPLIT_50_TO_80 = 'Age 70-79' AND REGION = 'North of England' AND SEX = 'Male' UNION ALL SELECT '2016-2018' AS "Year", 'Carcinoma and Other' AS "Tumour Type", 'Stage 4' AS "Stage", 'South of England' AS "Region", 'All' AS "Sex", 'Age 70-79' AS "Age", SUM(statisticofinterest_pancreas) as statistic_of_interest FROM tumour_cohort_linked_pancreas WHERE DIAGNOSISYEAR BETWEEN 2016 AND 2018 AND MORPH_GROUP = 'Carcinoma and Other' AND STAGE_SPLIT23 = 'Stage 4' AND SPLIT_50_TO_80 = 'Age 70-79' AND REGION = 'South of England' UNION ALL SELECT '2016-2018' AS "Year", 'Carcinoma and Other' AS "Tumour Type", 'Stage 4' AS "Stage", 'South of England' AS "Region", 'Female' AS "Sex", 'Age 70-79' AS "Age", SUM(statisticofinterest_pancreas) as statistic_of_interest FROM tumour_cohort_linked_pancreas WHERE DIAGNOSISYEAR BETWEEN 2016 AND 2018 AND MORPH_GROUP = 'Carcinoma and Other' AND STAGE_SPLIT23 = 'Stage 4' AND SPLIT_50_TO_80 = 'Age 70-79' AND REGION = 'South of England' AND SEX = 'Female' UNION ALL SELECT '2016-2018' AS "Year", 'Carcinoma and Other' AS "Tumour Type", 'Stage 4' AS "Stage", 'South of England' AS "Region", 'Male' AS "Sex", 'Age 70-79' AS "Age", SUM(statisticofinterest_pancreas) as statistic_of_interest FROM tumour_cohort_linked_pancreas WHERE DIAGNOSISYEAR BETWEEN 2016 AND 2018 AND MORPH_GROUP = 'Carcinoma and Other' AND STAGE_SPLIT23 = 'Stage 4' AND SPLIT_50_TO_80 = 'Age 70-79' AND REGION = 'South of England' AND SEX = 'Male' UNION ALL SELECT '2016-2018' AS "Year", 'Carcinoma and Other' AS "Tumour Type", 'Stage 4' AS "Stage", 'All' AS "Region", 'All' AS "Sex", 'Age 80+' AS "Age", SUM(statisticofinterest_pancreas) as statistic_of_interest FROM tumour_cohort_linked_pancreas WHERE DIAGNOSISYEAR BETWEEN 2016 AND 2018 AND MORPH_GROUP = 'Carcinoma and Other' AND STAGE_SPLIT23 = 'Stage 4' AND SPLIT_50_TO_80 = 'Age 80+' UNION ALL SELECT '2016-2018' AS "Year", 'Carcinoma and Other' AS "Tumour Type", 'Stage 4' AS "Stage", 'London' AS "Region", 'All' AS "Sex", 'Age 80+' AS "Age", SUM(statisticofinterest_pancreas) as statistic_of_interest FROM tumour_cohort_linked_pancreas WHERE DIAGNOSISYEAR BETWEEN 2016 AND 2018 AND MORPH_GROUP = 'Carcinoma and Other' AND STAGE_SPLIT23 = 'Stage 4' AND SPLIT_50_TO_80 = 'Age 80+' AND REGION = 'London' UNION ALL SELECT '2016-2018' AS "Year", 'Carcinoma and Other' AS "Tumour Type", 'Stage 4' AS "Stage", 'Midlands and East of England' AS "Region", 'All' AS "Sex", 'Age 80+' AS "Age", SUM(statisticofinterest_pancreas) as statistic_of_interest FROM tumour_cohort_linked_pancreas WHERE DIAGNOSISYEAR BETWEEN 2016 AND 2018 AND MORPH_GROUP = 'Carcinoma and Other' AND STAGE_SPLIT23 = 'Stage 4' AND SPLIT_50_TO_80 = 'Age 80+' AND REGION = 'Midlands and East of England' UNION ALL SELECT '2016-2018' AS "Year", 'Carcinoma and Other' AS "Tumour Type", 'Stage 4' AS "Stage", 'Midlands and East of England' AS "Region", 'Female' AS "Sex", 'Age 80+' AS "Age", SUM(statisticofinterest_pancreas) as statistic_of_interest FROM tumour_cohort_linked_pancreas WHERE DIAGNOSISYEAR BETWEEN 2016 AND 2018 AND MORPH_GROUP = 'Carcinoma and Other' AND STAGE_SPLIT23 = 'Stage 4' AND SPLIT_50_TO_80 = 'Age 80+' AND REGION = 'Midlands and East of England' AND SEX = 'Female' UNION ALL SELECT '2016-2018' AS "Year", 'Carcinoma and Other' AS "Tumour Type", 'Stage 4' AS "Stage", 'Midlands and East of England' AS "Region", 'Male' AS "Sex", 'Age 80+' AS "Age", SUM(statisticofinterest_pancreas) as statistic_of_interest FROM tumour_cohort_linked_pancreas WHERE DIAGNOSISYEAR BETWEEN 2016 AND 2018 AND MORPH_GROUP = 'Carcinoma and Other' AND STAGE_SPLIT23 = 'Stage 4' AND SPLIT_50_TO_80 = 'Age 80+' AND REGION = 'Midlands and East of England' AND SEX = 'Male' UNION ALL SELECT '2016-2018' AS "Year", 'Carcinoma and Other' AS "Tumour Type", 'Stage 4' AS "Stage", 'North of England' AS "Region", 'All' AS "Sex", 'Age 80+' AS "Age", SUM(statisticofinterest_pancreas) as statistic_of_interest FROM tumour_cohort_linked_pancreas WHERE DIAGNOSISYEAR BETWEEN 2016 AND 2018 AND MORPH_GROUP = 'Carcinoma and Other' AND STAGE_SPLIT23 = 'Stage 4' AND SPLIT_50_TO_80 = 'Age 80+' AND REGION = 'North of England' UNION ALL SELECT '2016-2018' AS "Year", 'Carcinoma and Other' AS "Tumour Type", 'Stage 4' AS "Stage", 'North of England' AS "Region", 'Female' AS "Sex", 'Age 80+' AS "Age", SUM(statisticofinterest_pancreas) as statistic_of_interest FROM tumour_cohort_linked_pancreas WHERE DIAGNOSISYEAR BETWEEN 2016 AND 2018 AND MORPH_GROUP = 'Carcinoma and Other' AND STAGE_SPLIT23 = 'Stage 4' AND SPLIT_50_TO_80 = 'Age 80+' AND REGION = 'North of England' AND SEX = 'Female' UNION ALL SELECT '2016-2018' AS "Year", 'Carcinoma and Other' AS "Tumour Type", 'Stage 4' AS "Stage", 'North of England' AS "Region", 'Male' AS "Sex", 'Age 80+' AS "Age", SUM(statisticofinterest_pancreas) as statistic_of_interest FROM tumour_cohort_linked_pancreas WHERE DIAGNOSISYEAR BETWEEN 2016 AND 2018 AND MORPH_GROUP = 'Carcinoma and Other' AND STAGE_SPLIT23 = 'Stage 4' AND SPLIT_50_TO_80 = 'Age 80+' AND REGION = 'North of England' AND SEX = 'Male' UNION ALL SELECT '2016-2018' AS "Year", 'Carcinoma and Other' AS "Tumour Type", 'Stage 4' AS "Stage", 'South of England' AS "Region", 'All' AS "Sex", 'Age 80+' AS "Age", SUM(statisticofinterest_pancreas) as statistic_of_interest FROM tumour_cohort_linked_pancreas WHERE DIAGNOSISYEAR BETWEEN 2016 AND 2018 AND MORPH_GROUP = 'Carcinoma and Other' AND STAGE_SPLIT23 = 'Stage 4' AND SPLIT_50_TO_80 = 'Age 80+' AND REGION = 'South of England' UNION ALL SELECT '2016-2018' AS "Year", 'Carcinoma and Other' AS "Tumour Type", 'Stage 4' AS "Stage", 'South of England' AS "Region", 'Female' AS "Sex", 'Age 80+' AS "Age", SUM(statisticofinterest_pancreas) as statistic_of_interest FROM tumour_cohort_linked_pancreas WHERE DIAGNOSISYEAR BETWEEN 2016 AND 2018 AND MORPH_GROUP = 'Carcinoma and Other' AND STAGE_SPLIT23 = 'Stage 4' AND SPLIT_50_TO_80 = 'Age 80+' AND REGION = 'South of England' AND SEX = 'Female' UNION ALL SELECT '2016-2018' AS "Year", 'Carcinoma and Other' AS "Tumour Type", 'Stage 4' AS "Stage", 'South of England' AS "Region", 'Male' AS "Sex", 'Age 80+' AS "Age", SUM(statisticofinterest_pancreas) as statistic_of_interest FROM tumour_cohort_linked_pancreas WHERE DIAGNOSISYEAR BETWEEN 2016 AND 2018 AND MORPH_GROUP = 'Carcinoma and Other' AND STAGE_SPLIT23 = 'Stage 4' AND SPLIT_50_TO_80 = 'Age 80+' AND REGION = 'South of England' AND SEX = 'Male' UNION ALL SELECT '2016-2018' AS "Year", 'Carcinoma and Other' AS "Tumour Type", 'Stage unknown' AS "Stage", 'All' AS "Region", 'All' AS "Sex", 'All' AS "Age", SUM(statisticofinterest_pancreas) as statistic_of_interest FROM tumour_cohort_linked_pancreas WHERE DIAGNOSISYEAR BETWEEN 2016 AND 2018 AND MORPH_GROUP = 'Carcinoma and Other' AND STAGE_SPLIT23 = 'Stage unknown' UNION ALL SELECT '2016-2018' AS "Year", 'Carcinoma and Other' AS "Tumour Type", 'Stage unknown' AS "Stage", 'All' AS "Region", 'All' AS "Sex", 'Age 00-59' AS "Age", SUM(statisticofinterest_pancreas) as statistic_of_interest FROM tumour_cohort_linked_pancreas WHERE DIAGNOSISYEAR BETWEEN 2016 AND 2018 AND MORPH_GROUP = 'Carcinoma and Other' AND STAGE_SPLIT23 = 'Stage unknown' AND SPLIT_60_TO_80 = 'Age 00-59' UNION ALL SELECT '2016-2018' AS "Year", 'Carcinoma and Other' AS "Tumour Type", 'Stage unknown' AS "Stage", 'All' AS "Region", 'All' AS "Sex", 'Age 60-69' AS "Age", SUM(statisticofinterest_pancreas) as statistic_of_interest FROM tumour_cohort_linked_pancreas WHERE DIAGNOSISYEAR BETWEEN 2016 AND 2018 AND MORPH_GROUP = 'Carcinoma and Other' AND STAGE_SPLIT23 = 'Stage unknown' AND SPLIT_60_TO_80 = 'Age 60-69' UNION ALL SELECT '2016-2018' AS "Year", 'Carcinoma and Other' AS "Tumour Type", 'Stage unknown' AS "Stage", 'All' AS "Region", 'Female' AS "Sex", 'Age 60-69' AS "Age", SUM(statisticofinterest_pancreas) as statistic_of_interest FROM tumour_cohort_linked_pancreas WHERE DIAGNOSISYEAR BETWEEN 2016 AND 2018 AND MORPH_GROUP = 'Carcinoma and Other' AND STAGE_SPLIT23 = 'Stage unknown' AND SPLIT_60_TO_80 = 'Age 60-69' AND SEX = 'Female' UNION ALL SELECT '2016-2018' AS "Year", 'Carcinoma and Other' AS "Tumour Type", 'Stage unknown' AS "Stage", 'All' AS "Region", 'Male' AS "Sex", 'Age 60-69' AS "Age", SUM(statisticofinterest_pancreas) as statistic_of_interest FROM tumour_cohort_linked_pancreas WHERE DIAGNOSISYEAR BETWEEN 2016 AND 2018 AND MORPH_GROUP = 'Carcinoma and Other' AND STAGE_SPLIT23 = 'Stage unknown' AND SPLIT_60_TO_80 = 'Age 60-69' AND SEX = 'Male' UNION ALL SELECT '2016-2018' AS "Year", 'Carcinoma and Other' AS "Tumour Type", 'Stage unknown' AS "Stage", 'All' AS "Region", 'All' AS "Sex", 'Age 70-79' AS "Age", SUM(statisticofinterest_pancreas) as statistic_of_interest FROM tumour_cohort_linked_pancreas WHERE DIAGNOSISYEAR BETWEEN 2016 AND 2018 AND MORPH_GROUP = 'Carcinoma and Other' AND STAGE_SPLIT23 = 'Stage unknown' AND SPLIT_60_TO_80 = 'Age 70-79' UNION ALL SELECT '2016-2018' AS "Year", 'Carcinoma and Other' AS "Tumour Type", 'Stage unknown' AS "Stage", 'All' AS "Region", 'Female' AS "Sex", 'Age 70-79' AS "Age", SUM(statisticofinterest_pancreas) as statistic_of_interest FROM tumour_cohort_linked_pancreas WHERE DIAGNOSISYEAR BETWEEN 2016 AND 2018 AND MORPH_GROUP = 'Carcinoma and Other' AND STAGE_SPLIT23 = 'Stage unknown' AND SPLIT_60_TO_80 = 'Age 70-79' AND SEX = 'Female' UNION ALL SELECT '2016-2018' AS "Year", 'Carcinoma and Other' AS "Tumour Type", 'Stage unknown' AS "Stage", 'All' AS "Region", 'Male' AS "Sex", 'Age 70-79' AS "Age", SUM(statisticofinterest_pancreas) as statistic_of_interest FROM tumour_cohort_linked_pancreas WHERE DIAGNOSISYEAR BETWEEN 2016 AND 2018 AND MORPH_GROUP = 'Carcinoma and Other' AND STAGE_SPLIT23 = 'Stage unknown' AND SPLIT_60_TO_80 = 'Age 70-79' AND SEX = 'Male' UNION ALL SELECT '2016-2018' AS "Year", 'Carcinoma and Other' AS "Tumour Type", 'Stage unknown' AS "Stage", 'All' AS "Region", 'All' AS "Sex", 'Age 80+' AS "Age", SUM(statisticofinterest_pancreas) as statistic_of_interest FROM tumour_cohort_linked_pancreas WHERE DIAGNOSISYEAR BETWEEN 2016 AND 2018 AND MORPH_GROUP = 'Carcinoma and Other' AND STAGE_SPLIT23 = 'Stage unknown' AND SPLIT_60_TO_80 = 'Age 80+' UNION ALL SELECT '2016-2018' AS "Year", 'Carcinoma and Other' AS "Tumour Type", 'Stage unknown' AS "Stage", 'All' AS "Region", 'Female' AS "Sex", 'Age 80+' AS "Age", SUM(statisticofinterest_pancreas) as statistic_of_interest FROM tumour_cohort_linked_pancreas WHERE DIAGNOSISYEAR BETWEEN 2016 AND 2018 AND MORPH_GROUP = 'Carcinoma and Other' AND STAGE_SPLIT23 = 'Stage unknown' AND SPLIT_60_TO_80 = 'Age 80+' AND SEX = 'Female' UNION ALL SELECT '2016-2018' AS "Year", 'Carcinoma and Other' AS "Tumour Type", 'Stage unknown' AS "Stage", 'All' AS "Region", 'Male' AS "Sex", 'Age 80+' AS "Age", SUM(statisticofinterest_pancreas) as statistic_of_interest FROM tumour_cohort_linked_pancreas WHERE DIAGNOSISYEAR BETWEEN 2016 AND 2018 AND MORPH_GROUP = 'Carcinoma and Other' AND STAGE_SPLIT23 = 'Stage unknown' AND SPLIT_60_TO_80 = 'Age 80+' AND SEX = 'Male' UNION ALL SELECT '2016-2018' AS "Year", 'Neuroendocrine' AS "Tumour Type", 'All' AS "Stage", 'All' AS "Region", 'All' AS "Sex", 'All' AS "Age", SUM(statisticofinterest_pancreas) as statistic_of_interest FROM tumour_cohort_linked_pancreas WHERE DIAGNOSISYEAR BETWEEN 2016 AND 2018 AND MORPH_GROUP = 'Neuroendocrine' UNION ALL SELECT '2016-2018' AS "Year", 'Neuroendocrine' AS "Tumour Type", 'All' AS "Stage", 'All' AS "Region", 'All' AS "Sex", 'Age 00-49' AS "Age", SUM(statisticofinterest_pancreas) as statistic_of_interest FROM tumour_cohort_linked_pancreas WHERE DIAGNOSISYEAR BETWEEN 2016 AND 2018 AND MORPH_GROUP = 'Neuroendocrine' AND SPLIT_50_TO_70 = 'Age 00-49' UNION ALL SELECT '2016-2018' AS "Year", 'Neuroendocrine' AS "Tumour Type", 'All' AS "Stage", 'All' AS "Region", 'All' AS "Sex", 'Age 50-59' AS "Age", SUM(statisticofinterest_pancreas) as statistic_of_interest FROM tumour_cohort_linked_pancreas WHERE DIAGNOSISYEAR BETWEEN 2016 AND 2018 AND MORPH_GROUP = 'Neuroendocrine' AND SPLIT_50_TO_70 = 'Age 50-59' UNION ALL SELECT '2016-2018' AS "Year", 'Neuroendocrine' AS "Tumour Type", 'All' AS "Stage", 'All' AS "Region", 'All' AS "Sex", 'Age 60-69' AS "Age", SUM(statisticofinterest_pancreas) as statistic_of_interest FROM tumour_cohort_linked_pancreas WHERE DIAGNOSISYEAR BETWEEN 2016 AND 2018 AND MORPH_GROUP = 'Neuroendocrine' AND SPLIT_50_TO_70 = 'Age 60-69' UNION ALL SELECT '2016-2018' AS "Year", 'Neuroendocrine' AS "Tumour Type", 'All' AS "Stage", 'All' AS "Region", 'All' AS "Sex", 'Age 70+' AS "Age", SUM(statisticofinterest_pancreas) as statistic_of_interest FROM tumour_cohort_linked_pancreas WHERE DIAGNOSISYEAR BETWEEN 2016 AND 2018 AND MORPH_GROUP = 'Neuroendocrine' AND SPLIT_50_TO_70 = 'Age 70+' UNION ALL SELECT '2017-2019' AS "Year", 'All' AS "Tumour Type", 'All' AS "Stage", 'All' AS "Region", 'All' AS "Sex", 'All' AS "Age", SUM(statisticofinterest_pancreas) as statistic_of_interest FROM tumour_cohort_linked_pancreas WHERE DIAGNOSISYEAR BETWEEN 2017 AND 2019 UNION ALL SELECT '2017-2019' AS "Year", 'Carcinoma and Other' AS "Tumour Type", 'All' AS "Stage", 'All' AS "Region", 'All' AS "Sex", 'All' AS "Age", SUM(statisticofinterest_pancreas) as statistic_of_interest FROM tumour_cohort_linked_pancreas WHERE DIAGNOSISYEAR BETWEEN 2017 AND 2019 AND MORPH_GROUP = 'Carcinoma and Other' UNION ALL SELECT '2017-2019' AS "Year", 'Carcinoma and Other' AS "Tumour Type", 'Stage 1-2' AS "Stage", 'All' AS "Region", 'All' AS "Sex", 'All' AS "Age", SUM(statisticofinterest_pancreas) as statistic_of_interest FROM tumour_cohort_linked_pancreas WHERE DIAGNOSISYEAR BETWEEN 2017 AND 2019 AND MORPH_GROUP = 'Carcinoma and Other' AND STAGE_SPLIT23 = 'Stage 1-2' UNION ALL SELECT '2017-2019' AS "Year", 'Carcinoma and Other' AS "Tumour Type", 'Stage 1-2' AS "Stage", 'All' AS "Region", 'All' AS "Sex", 'Age 00-59' AS "Age", SUM(statisticofinterest_pancreas) as statistic_of_interest FROM tumour_cohort_linked_pancreas WHERE DIAGNOSISYEAR BETWEEN 2017 AND 2019 AND MORPH_GROUP = 'Carcinoma and Other' AND STAGE_SPLIT23 = 'Stage 1-2' AND SPLIT_60_TO_80 = 'Age 00-59' UNION ALL SELECT '2017-2019' AS "Year", 'Carcinoma and Other' AS "Tumour Type", 'Stage 1-2' AS "Stage", 'All' AS "Region", 'All' AS "Sex", 'Age 60-69' AS "Age", SUM(statisticofinterest_pancreas) as statistic_of_interest FROM tumour_cohort_linked_pancreas WHERE DIAGNOSISYEAR BETWEEN 2017 AND 2019 AND MORPH_GROUP = 'Carcinoma and Other' AND STAGE_SPLIT23 = 'Stage 1-2' AND SPLIT_60_TO_80 = 'Age 60-69' UNION ALL SELECT '2017-2019' AS "Year", 'Carcinoma and Other' AS "Tumour Type", 'Stage 1-2' AS "Stage", 'All' AS "Region", 'Female' AS "Sex", 'Age 60-69' AS "Age", SUM(statisticofinterest_pancreas) as statistic_of_interest FROM tumour_cohort_linked_pancreas WHERE DIAGNOSISYEAR BETWEEN 2017 AND 2019 AND MORPH_GROUP = 'Carcinoma and Other' AND STAGE_SPLIT23 = 'Stage 1-2' AND SPLIT_60_TO_80 = 'Age 60-69' AND SEX = 'Female' UNION ALL SELECT '2017-2019' AS "Year", 'Carcinoma and Other' AS "Tumour Type", 'Stage 1-2' AS "Stage", 'All' AS "Region", 'Male' AS "Sex", 'Age 60-69' AS "Age", SUM(statisticofinterest_pancreas) as statistic_of_interest FROM tumour_cohort_linked_pancreas WHERE DIAGNOSISYEAR BETWEEN 2017 AND 2019 AND MORPH_GROUP = 'Carcinoma and Other' AND STAGE_SPLIT23 = 'Stage 1-2' AND SPLIT_60_TO_80 = 'Age 60-69' AND SEX = 'Male' UNION ALL SELECT '2017-2019' AS "Year", 'Carcinoma and Other' AS "Tumour Type", 'Stage 1-2' AS "Stage", 'All' AS "Region", 'All' AS "Sex", 'Age 70-79' AS "Age", SUM(statisticofinterest_pancreas) as statistic_of_interest FROM tumour_cohort_linked_pancreas WHERE DIAGNOSISYEAR BETWEEN 2017 AND 2019 AND MORPH_GROUP = 'Carcinoma and Other' AND STAGE_SPLIT23 = 'Stage 1-2' AND SPLIT_60_TO_80 = 'Age 70-79' UNION ALL SELECT '2017-2019' AS "Year", 'Carcinoma and Other' AS "Tumour Type", 'Stage 1-2' AS "Stage", 'All' AS "Region", 'Female' AS "Sex", 'Age 70-79' AS "Age", SUM(statisticofinterest_pancreas) as statistic_of_interest FROM tumour_cohort_linked_pancreas WHERE DIAGNOSISYEAR BETWEEN 2017 AND 2019 AND MORPH_GROUP = 'Carcinoma and Other' AND STAGE_SPLIT23 = 'Stage 1-2' AND SPLIT_60_TO_80 = 'Age 70-79' AND SEX = 'Female' UNION ALL SELECT '2017-2019' AS "Year", 'Carcinoma and Other' AS "Tumour Type", 'Stage 1-2' AS "Stage", 'All' AS "Region", 'Male' AS "Sex", 'Age 70-79' AS "Age", SUM(statisticofinterest_pancreas) as statistic_of_interest FROM tumour_cohort_linked_pancreas WHERE DIAGNOSISYEAR BETWEEN 2017 AND 2019 AND MORPH_GROUP = 'Carcinoma and Other' AND STAGE_SPLIT23 = 'Stage 1-2' AND SPLIT_60_TO_80 = 'Age 70-79' AND SEX = 'Male' UNION ALL SELECT '2017-2019' AS "Year", 'Carcinoma and Other' AS "Tumour Type", 'Stage 1-2' AS "Stage", 'All' AS "Region", 'All' AS "Sex", 'Age 80+' AS "Age", SUM(statisticofinterest_pancreas) as statistic_of_interest FROM tumour_cohort_linked_pancreas WHERE DIAGNOSISYEAR BETWEEN 2017 AND 2019 AND MORPH_GROUP = 'Carcinoma and Other' AND STAGE_SPLIT23 = 'Stage 1-2' AND SPLIT_60_TO_80 = 'Age 80+' UNION ALL SELECT '2017-2019' AS "Year", 'Carcinoma and Other' AS "Tumour Type", 'Stage 1-2' AS "Stage", 'All' AS "Region", 'Female' AS "Sex", 'Age 80+' AS "Age", SUM(statisticofinterest_pancreas) as statistic_of_interest FROM tumour_cohort_linked_pancreas WHERE DIAGNOSISYEAR BETWEEN 2017 AND 2019 AND MORPH_GROUP = 'Carcinoma and Other' AND STAGE_SPLIT23 = 'Stage 1-2' AND SPLIT_60_TO_80 = 'Age 80+' AND SEX = 'Female' UNION ALL SELECT '2017-2019' AS "Year", 'Carcinoma and Other' AS "Tumour Type", 'Stage 1-2' AS "Stage", 'All' AS "Region", 'Male' AS "Sex", 'Age 80+' AS "Age", SUM(statisticofinterest_pancreas) as statistic_of_interest FROM tumour_cohort_linked_pancreas WHERE DIAGNOSISYEAR BETWEEN 2017 AND 2019 AND MORPH_GROUP = 'Carcinoma and Other' AND STAGE_SPLIT23 = 'Stage 1-2' AND SPLIT_60_TO_80 = 'Age 80+' AND SEX = 'Male' UNION ALL SELECT '2017-2019' AS "Year", 'Carcinoma and Other' AS "Tumour Type", 'Stage 3' AS "Stage", 'All' AS "Region", 'All' AS "Sex", 'All' AS "Age", SUM(statisticofinterest_pancreas) as statistic_of_interest FROM tumour_cohort_linked_pancreas WHERE DIAGNOSISYEAR BETWEEN 2017 AND 2019 AND MORPH_GROUP = 'Carcinoma and Other' AND STAGE_SPLIT23 = 'Stage 3' UNION ALL SELECT '2017-2019' AS "Year", 'Carcinoma and Other' AS "Tumour Type", 'Stage 3' AS "Stage", 'All' AS "Region", 'All' AS "Sex", 'Age 00-59' AS "Age", SUM(statisticofinterest_pancreas) as statistic_of_interest FROM tumour_cohort_linked_pancreas WHERE DIAGNOSISYEAR BETWEEN 2017 AND 2019 AND MORPH_GROUP = 'Carcinoma and Other' AND STAGE_SPLIT23 = 'Stage 3' AND SPLIT_60_70 = 'Age 00-59' UNION ALL SELECT '2017-2019' AS "Year", 'Carcinoma and Other' AS "Tumour Type", 'Stage 3' AS "Stage", 'All' AS "Region", 'All' AS "Sex", 'Age 60-69' AS "Age", SUM(statisticofinterest_pancreas) as statistic_of_interest FROM tumour_cohort_linked_pancreas WHERE DIAGNOSISYEAR BETWEEN 2017 AND 2019 AND MORPH_GROUP = 'Carcinoma and Other' AND STAGE_SPLIT23 = 'Stage 3' AND SPLIT_60_70 = 'Age 60-69' UNION ALL SELECT '2017-2019' AS "Year", 'Carcinoma and Other' AS "Tumour Type", 'Stage 3' AS "Stage", 'All' AS "Region", 'All' AS "Sex", 'Age 70+' AS "Age", SUM(statisticofinterest_pancreas) as statistic_of_interest FROM tumour_cohort_linked_pancreas WHERE DIAGNOSISYEAR BETWEEN 2017 AND 2019 AND MORPH_GROUP = 'Carcinoma and Other' AND STAGE_SPLIT23 = 'Stage 3' AND SPLIT_60_70 = 'Age 70+' UNION ALL SELECT '2017-2019' AS "Year", 'Carcinoma and Other' AS "Tumour Type", 'Stage 3' AS "Stage", 'All' AS "Region", 'Female' AS "Sex", 'Age 70+' AS "Age", SUM(statisticofinterest_pancreas) as statistic_of_interest FROM tumour_cohort_linked_pancreas WHERE DIAGNOSISYEAR BETWEEN 2017 AND 2019 AND MORPH_GROUP = 'Carcinoma and Other' AND STAGE_SPLIT23 = 'Stage 3' AND SPLIT_60_70 = 'Age 70+' AND SEX = 'Female' UNION ALL SELECT '2017-2019' AS "Year", 'Carcinoma and Other' AS "Tumour Type", 'Stage 3' AS "Stage", 'All' AS "Region", 'Male' AS "Sex", 'Age 70+' AS "Age", SUM(statisticofinterest_pancreas) as statistic_of_interest FROM tumour_cohort_linked_pancreas WHERE DIAGNOSISYEAR BETWEEN 2017 AND 2019 AND MORPH_GROUP = 'Carcinoma and Other' AND STAGE_SPLIT23 = 'Stage 3' AND SPLIT_60_70 = 'Age 70+' AND SEX = 'Male' UNION ALL SELECT '2017-2019' AS "Year", 'Carcinoma and Other' AS "Tumour Type", 'Stage 4' AS "Stage", 'All' AS "Region", 'All' AS "Sex", 'All' AS "Age", SUM(statisticofinterest_pancreas) as statistic_of_interest FROM tumour_cohort_linked_pancreas WHERE DIAGNOSISYEAR BETWEEN 2017 AND 2019 AND MORPH_GROUP = 'Carcinoma and Other' AND STAGE_SPLIT23 = 'Stage 4' UNION ALL SELECT '2017-2019' AS "Year", 'Carcinoma and Other' AS "Tumour Type", 'Stage 4' AS "Stage", 'All' AS "Region", 'All' AS "Sex", 'Age 00-49' AS "Age", SUM(statisticofinterest_pancreas) as statistic_of_interest FROM tumour_cohort_linked_pancreas WHERE DIAGNOSISYEAR BETWEEN 2017 AND 2019 AND MORPH_GROUP = 'Carcinoma and Other' AND STAGE_SPLIT23 = 'Stage 4' AND SPLIT_50_TO_80 = 'Age 00-49' UNION ALL SELECT '2017-2019' AS "Year", 'Carcinoma and Other' AS "Tumour Type", 'Stage 4' AS "Stage", 'All' AS "Region", 'All' AS "Sex", 'Age 50-59' AS "Age", SUM(statisticofinterest_pancreas) as statistic_of_interest FROM tumour_cohort_linked_pancreas WHERE DIAGNOSISYEAR BETWEEN 2017 AND 2019 AND MORPH_GROUP = 'Carcinoma and Other' AND STAGE_SPLIT23 = 'Stage 4' AND SPLIT_50_TO_80 = 'Age 50-59' UNION ALL SELECT '2017-2019' AS "Year", 'Carcinoma and Other' AS "Tumour Type", 'Stage 4' AS "Stage", 'All' AS "Region", 'All' AS "Sex", 'Age 60-69' AS "Age", SUM(statisticofinterest_pancreas) as statistic_of_interest FROM tumour_cohort_linked_pancreas WHERE DIAGNOSISYEAR BETWEEN 2017 AND 2019 AND MORPH_GROUP = 'Carcinoma and Other' AND STAGE_SPLIT23 = 'Stage 4' AND SPLIT_50_TO_80 = 'Age 60-69' UNION ALL SELECT '2017-2019' AS "Year", 'Carcinoma and Other' AS "Tumour Type", 'Stage 4' AS "Stage", 'London' AS "Region", 'All' AS "Sex", 'Age 60-69' AS "Age", SUM(statisticofinterest_pancreas) as statistic_of_interest FROM tumour_cohort_linked_pancreas WHERE DIAGNOSISYEAR BETWEEN 2017 AND 2019 AND MORPH_GROUP = 'Carcinoma and Other' AND STAGE_SPLIT23 = 'Stage 4' AND SPLIT_50_TO_80 = 'Age 60-69' AND REGION = 'London' UNION ALL SELECT '2017-2019' AS "Year", 'Carcinoma and Other' AS "Tumour Type", 'Stage 4' AS "Stage", 'Midlands and East of England' AS "Region", 'All' AS "Sex", 'Age 60-69' AS "Age", SUM(statisticofinterest_pancreas) as statistic_of_interest FROM tumour_cohort_linked_pancreas WHERE DIAGNOSISYEAR BETWEEN 2017 AND 2019 AND MORPH_GROUP = 'Carcinoma and Other' AND STAGE_SPLIT23 = 'Stage 4' AND SPLIT_50_TO_80 = 'Age 60-69' AND REGION = 'Midlands and East of England' UNION ALL SELECT '2017-2019' AS "Year", 'Carcinoma and Other' AS "Tumour Type", 'Stage 4' AS "Stage", 'Midlands and East of England' AS "Region", 'Female' AS "Sex", 'Age 60-69' AS "Age", SUM(statisticofinterest_pancreas) as statistic_of_interest FROM tumour_cohort_linked_pancreas WHERE DIAGNOSISYEAR BETWEEN 2017 AND 2019 AND MORPH_GROUP = 'Carcinoma and Other' AND STAGE_SPLIT23 = 'Stage 4' AND SPLIT_50_TO_80 = 'Age 60-69' AND REGION = 'Midlands and East of England' AND SEX = 'Female' UNION ALL SELECT '2017-2019' AS "Year", 'Carcinoma and Other' AS "Tumour Type", 'Stage 4' AS "Stage", 'Midlands and East of England' AS "Region", 'Male' AS "Sex", 'Age 60-69' AS "Age", SUM(statisticofinterest_pancreas) as statistic_of_interest FROM tumour_cohort_linked_pancreas WHERE DIAGNOSISYEAR BETWEEN 2017 AND 2019 AND MORPH_GROUP = 'Carcinoma and Other' AND STAGE_SPLIT23 = 'Stage 4' AND SPLIT_50_TO_80 = 'Age 60-69' AND REGION = 'Midlands and East of England' AND SEX = 'Male' UNION ALL SELECT '2017-2019' AS "Year", 'Carcinoma and Other' AS "Tumour Type", 'Stage 4' AS "Stage", 'North of England' AS "Region", 'All' AS "Sex", 'Age 60-69' AS "Age", SUM(statisticofinterest_pancreas) as statistic_of_interest FROM tumour_cohort_linked_pancreas WHERE DIAGNOSISYEAR BETWEEN 2017 AND 2019 AND MORPH_GROUP = 'Carcinoma and Other' AND STAGE_SPLIT23 = 'Stage 4' AND SPLIT_50_TO_80 = 'Age 60-69' AND REGION = 'North of England' UNION ALL SELECT '2017-2019' AS "Year", 'Carcinoma and Other' AS "Tumour Type", 'Stage 4' AS "Stage", 'North of England' AS "Region", 'Female' AS "Sex", 'Age 60-69' AS "Age", SUM(statisticofinterest_pancreas) as statistic_of_interest FROM tumour_cohort_linked_pancreas WHERE DIAGNOSISYEAR BETWEEN 2017 AND 2019 AND MORPH_GROUP = 'Carcinoma and Other' AND STAGE_SPLIT23 = 'Stage 4' AND SPLIT_50_TO_80 = 'Age 60-69' AND REGION = 'North of England' AND SEX = 'Female' UNION ALL SELECT '2017-2019' AS "Year", 'Carcinoma and Other' AS "Tumour Type", 'Stage 4' AS "Stage", 'North of England' AS "Region", 'Male' AS "Sex", 'Age 60-69' AS "Age", SUM(statisticofinterest_pancreas) as statistic_of_interest FROM tumour_cohort_linked_pancreas WHERE DIAGNOSISYEAR BETWEEN 2017 AND 2019 AND MORPH_GROUP = 'Carcinoma and Other' AND STAGE_SPLIT23 = 'Stage 4' AND SPLIT_50_TO_80 = 'Age 60-69' AND REGION = 'North of England' AND SEX = 'Male' UNION ALL SELECT '2017-2019' AS "Year", 'Carcinoma and Other' AS "Tumour Type", 'Stage 4' AS "Stage", 'South of England' AS "Region", 'All' AS "Sex", 'Age 60-69' AS "Age", SUM(statisticofinterest_pancreas) as statistic_of_interest FROM tumour_cohort_linked_pancreas WHERE DIAGNOSISYEAR BETWEEN 2017 AND 2019 AND MORPH_GROUP = 'Carcinoma and Other' AND STAGE_SPLIT23 = 'Stage 4' AND SPLIT_50_TO_80 = 'Age 60-69' AND REGION = 'South of England' UNION ALL SELECT '2017-2019' AS "Year", 'Carcinoma and Other' AS "Tumour Type", 'Stage 4' AS "Stage", 'South of England' AS "Region", 'Female' AS "Sex", 'Age 60-69' AS "Age", SUM(statisticofinterest_pancreas) as statistic_of_interest FROM tumour_cohort_linked_pancreas WHERE DIAGNOSISYEAR BETWEEN 2017 AND 2019 AND MORPH_GROUP = 'Carcinoma and Other' AND STAGE_SPLIT23 = 'Stage 4' AND SPLIT_50_TO_80 = 'Age 60-69' AND REGION = 'South of England' AND SEX = 'Female' UNION ALL SELECT '2017-2019' AS "Year", 'Carcinoma and Other' AS "Tumour Type", 'Stage 4' AS "Stage", 'South of England' AS "Region", 'Male' AS "Sex", 'Age 60-69' AS "Age", SUM(statisticofinterest_pancreas) as statistic_of_interest FROM tumour_cohort_linked_pancreas WHERE DIAGNOSISYEAR BETWEEN 2017 AND 2019 AND MORPH_GROUP = 'Carcinoma and Other' AND STAGE_SPLIT23 = 'Stage 4' AND SPLIT_50_TO_80 = 'Age 60-69' AND REGION = 'South of England' AND SEX = 'Male' UNION ALL SELECT '2017-2019' AS "Year", 'Carcinoma and Other' AS "Tumour Type", 'Stage 4' AS "Stage", 'All' AS "Region", 'All' AS "Sex", 'Age 70-79' AS "Age", SUM(statisticofinterest_pancreas) as statistic_of_interest FROM tumour_cohort_linked_pancreas WHERE DIAGNOSISYEAR BETWEEN 2017 AND 2019 AND MORPH_GROUP = 'Carcinoma and Other' AND STAGE_SPLIT23 = 'Stage 4' AND SPLIT_50_TO_80 = 'Age 70-79' UNION ALL SELECT '2017-2019' AS "Year", 'Carcinoma and Other' AS "Tumour Type", 'Stage 4' AS "Stage", 'London' AS "Region", 'All' AS "Sex", 'Age 70-79' AS "Age", SUM(statisticofinterest_pancreas) as statistic_of_interest FROM tumour_cohort_linked_pancreas WHERE DIAGNOSISYEAR BETWEEN 2017 AND 2019 AND MORPH_GROUP = 'Carcinoma and Other' AND STAGE_SPLIT23 = 'Stage 4' AND SPLIT_50_TO_80 = 'Age 70-79' AND REGION = 'London' UNION ALL SELECT '2017-2019' AS "Year", 'Carcinoma and Other' AS "Tumour Type", 'Stage 4' AS "Stage", 'Midlands and East of England' AS "Region", 'All' AS "Sex", 'Age 70-79' AS "Age", SUM(statisticofinterest_pancreas) as statistic_of_interest FROM tumour_cohort_linked_pancreas WHERE DIAGNOSISYEAR BETWEEN 2017 AND 2019 AND MORPH_GROUP = 'Carcinoma and Other' AND STAGE_SPLIT23 = 'Stage 4' AND SPLIT_50_TO_80 = 'Age 70-79' AND REGION = 'Midlands and East of England' UNION ALL SELECT '2017-2019' AS "Year", 'Carcinoma and Other' AS "Tumour Type", 'Stage 4' AS "Stage", 'Midlands and East of England' AS "Region", 'Female' AS "Sex", 'Age 70-79' AS "Age", SUM(statisticofinterest_pancreas) as statistic_of_interest FROM tumour_cohort_linked_pancreas WHERE DIAGNOSISYEAR BETWEEN 2017 AND 2019 AND MORPH_GROUP = 'Carcinoma and Other' AND STAGE_SPLIT23 = 'Stage 4' AND SPLIT_50_TO_80 = 'Age 70-79' AND REGION = 'Midlands and East of England' AND SEX = 'Female' UNION ALL SELECT '2017-2019' AS "Year", 'Carcinoma and Other' AS "Tumour Type", 'Stage 4' AS "Stage", 'Midlands and East of England' AS "Region", 'Male' AS "Sex", 'Age 70-79' AS "Age", SUM(statisticofinterest_pancreas) as statistic_of_interest FROM tumour_cohort_linked_pancreas WHERE DIAGNOSISYEAR BETWEEN 2017 AND 2019 AND MORPH_GROUP = 'Carcinoma and Other' AND STAGE_SPLIT23 = 'Stage 4' AND SPLIT_50_TO_80 = 'Age 70-79' AND REGION = 'Midlands and East of England' AND SEX = 'Male' UNION ALL SELECT '2017-2019' AS "Year", 'Carcinoma and Other' AS "Tumour Type", 'Stage 4' AS "Stage", 'North of England' AS "Region", 'All' AS "Sex", 'Age 70-79' AS "Age", SUM(statisticofinterest_pancreas) as statistic_of_interest FROM tumour_cohort_linked_pancreas WHERE DIAGNOSISYEAR BETWEEN 2017 AND 2019 AND MORPH_GROUP = 'Carcinoma and Other' AND STAGE_SPLIT23 = 'Stage 4' AND SPLIT_50_TO_80 = 'Age 70-79' AND REGION = 'North of England' UNION ALL SELECT '2017-2019' AS "Year", 'Carcinoma and Other' AS "Tumour Type", 'Stage 4' AS "Stage", 'North of England' AS "Region", 'Female' AS "Sex", 'Age 70-79' AS "Age", SUM(statisticofinterest_pancreas) as statistic_of_interest FROM tumour_cohort_linked_pancreas WHERE DIAGNOSISYEAR BETWEEN 2017 AND 2019 AND MORPH_GROUP = 'Carcinoma and Other' AND STAGE_SPLIT23 = 'Stage 4' AND SPLIT_50_TO_80 = 'Age 70-79' AND REGION = 'North of England' AND SEX = 'Female' UNION ALL SELECT '2017-2019' AS "Year", 'Carcinoma and Other' AS "Tumour Type", 'Stage 4' AS "Stage", 'North of England' AS "Region", 'Male' AS "Sex", 'Age 70-79' AS "Age", SUM(statisticofinterest_pancreas) as statistic_of_interest FROM tumour_cohort_linked_pancreas WHERE DIAGNOSISYEAR BETWEEN 2017 AND 2019 AND MORPH_GROUP = 'Carcinoma and Other' AND STAGE_SPLIT23 = 'Stage 4' AND SPLIT_50_TO_80 = 'Age 70-79' AND REGION = 'North of England' AND SEX = 'Male' UNION ALL SELECT '2017-2019' AS "Year", 'Carcinoma and Other' AS "Tumour Type", 'Stage 4' AS "Stage", 'South of England' AS "Region", 'All' AS "Sex", 'Age 70-79' AS "Age", SUM(statisticofinterest_pancreas) as statistic_of_interest FROM tumour_cohort_linked_pancreas WHERE DIAGNOSISYEAR BETWEEN 2017 AND 2019 AND MORPH_GROUP = 'Carcinoma and Other' AND STAGE_SPLIT23 = 'Stage 4' AND SPLIT_50_TO_80 = 'Age 70-79' AND REGION = 'South of England' UNION ALL SELECT '2017-2019' AS "Year", 'Carcinoma and Other' AS "Tumour Type", 'Stage 4' AS "Stage", 'South of England' AS "Region", 'Female' AS "Sex", 'Age 70-79' AS "Age", SUM(statisticofinterest_pancreas) as statistic_of_interest FROM tumour_cohort_linked_pancreas WHERE DIAGNOSISYEAR BETWEEN 2017 AND 2019 AND MORPH_GROUP = 'Carcinoma and Other' AND STAGE_SPLIT23 = 'Stage 4' AND SPLIT_50_TO_80 = 'Age 70-79' AND REGION = 'South of England' AND SEX = 'Female' UNION ALL SELECT '2017-2019' AS "Year", 'Carcinoma and Other' AS "Tumour Type", 'Stage 4' AS "Stage", 'South of England' AS "Region", 'Male' AS "Sex", 'Age 70-79' AS "Age", SUM(statisticofinterest_pancreas) as statistic_of_interest FROM tumour_cohort_linked_pancreas WHERE DIAGNOSISYEAR BETWEEN 2017 AND 2019 AND MORPH_GROUP = 'Carcinoma and Other' AND STAGE_SPLIT23 = 'Stage 4' AND SPLIT_50_TO_80 = 'Age 70-79' AND REGION = 'South of England' AND SEX = 'Male' UNION ALL SELECT '2017-2019' AS "Year", 'Carcinoma and Other' AS "Tumour Type", 'Stage 4' AS "Stage", 'All' AS "Region", 'All' AS "Sex", 'Age 80+' AS "Age", SUM(statisticofinterest_pancreas) as statistic_of_interest FROM tumour_cohort_linked_pancreas WHERE DIAGNOSISYEAR BETWEEN 2017 AND 2019 AND MORPH_GROUP = 'Carcinoma and Other' AND STAGE_SPLIT23 = 'Stage 4' AND SPLIT_50_TO_80 = 'Age 80+' UNION ALL SELECT '2017-2019' AS "Year", 'Carcinoma and Other' AS "Tumour Type", 'Stage 4' AS "Stage", 'London' AS "Region", 'All' AS "Sex", 'Age 80+' AS "Age", SUM(statisticofinterest_pancreas) as statistic_of_interest FROM tumour_cohort_linked_pancreas WHERE DIAGNOSISYEAR BETWEEN 2017 AND 2019 AND MORPH_GROUP = 'Carcinoma and Other' AND STAGE_SPLIT23 = 'Stage 4' AND SPLIT_50_TO_80 = 'Age 80+' AND REGION = 'London' UNION ALL SELECT '2017-2019' AS "Year", 'Carcinoma and Other' AS "Tumour Type", 'Stage 4' AS "Stage", 'Midlands and East of England' AS "Region", 'All' AS "Sex", 'Age 80+' AS "Age", SUM(statisticofinterest_pancreas) as statistic_of_interest FROM tumour_cohort_linked_pancreas WHERE DIAGNOSISYEAR BETWEEN 2017 AND 2019 AND MORPH_GROUP = 'Carcinoma and Other' AND STAGE_SPLIT23 = 'Stage 4' AND SPLIT_50_TO_80 = 'Age 80+' AND REGION = 'Midlands and East of England' UNION ALL SELECT '2017-2019' AS "Year", 'Carcinoma and Other' AS "Tumour Type", 'Stage 4' AS "Stage", 'Midlands and East of England' AS "Region", 'Female' AS "Sex", 'Age 80+' AS "Age", SUM(statisticofinterest_pancreas) as statistic_of_interest FROM tumour_cohort_linked_pancreas WHERE DIAGNOSISYEAR BETWEEN 2017 AND 2019 AND MORPH_GROUP = 'Carcinoma and Other' AND STAGE_SPLIT23 = 'Stage 4' AND SPLIT_50_TO_80 = 'Age 80+' AND REGION = 'Midlands and East of England' AND SEX = 'Female' UNION ALL SELECT '2017-2019' AS "Year", 'Carcinoma and Other' AS "Tumour Type", 'Stage 4' AS "Stage", 'Midlands and East of England' AS "Region", 'Male' AS "Sex", 'Age 80+' AS "Age", SUM(statisticofinterest_pancreas) as statistic_of_interest FROM tumour_cohort_linked_pancreas WHERE DIAGNOSISYEAR BETWEEN 2017 AND 2019 AND MORPH_GROUP = 'Carcinoma and Other' AND STAGE_SPLIT23 = 'Stage 4' AND SPLIT_50_TO_80 = 'Age 80+' AND REGION = 'Midlands and East of England' AND SEX = 'Male' UNION ALL SELECT '2017-2019' AS "Year", 'Carcinoma and Other' AS "Tumour Type", 'Stage 4' AS "Stage", 'North of England' AS "Region", 'All' AS "Sex", 'Age 80+' AS "Age", SUM(statisticofinterest_pancreas) as statistic_of_interest FROM tumour_cohort_linked_pancreas WHERE DIAGNOSISYEAR BETWEEN 2017 AND 2019 AND MORPH_GROUP = 'Carcinoma and Other' AND STAGE_SPLIT23 = 'Stage 4' AND SPLIT_50_TO_80 = 'Age 80+' AND REGION = 'North of England' UNION ALL SELECT '2017-2019' AS "Year", 'Carcinoma and Other' AS "Tumour Type", 'Stage 4' AS "Stage", 'North of England' AS "Region", 'Female' AS "Sex", 'Age 80+' AS "Age", SUM(statisticofinterest_pancreas) as statistic_of_interest FROM tumour_cohort_linked_pancreas WHERE DIAGNOSISYEAR BETWEEN 2017 AND 2019 AND MORPH_GROUP = 'Carcinoma and Other' AND STAGE_SPLIT23 = 'Stage 4' AND SPLIT_50_TO_80 = 'Age 80+' AND REGION = 'North of England' AND SEX = 'Female' UNION ALL SELECT '2017-2019' AS "Year", 'Carcinoma and Other' AS "Tumour Type", 'Stage 4' AS "Stage", 'North of England' AS "Region", 'Male' AS "Sex", 'Age 80+' AS "Age", SUM(statisticofinterest_pancreas) as statistic_of_interest FROM tumour_cohort_linked_pancreas WHERE DIAGNOSISYEAR BETWEEN 2017 AND 2019 AND MORPH_GROUP = 'Carcinoma and Other' AND STAGE_SPLIT23 = 'Stage 4' AND SPLIT_50_TO_80 = 'Age 80+' AND REGION = 'North of England' AND SEX = 'Male' UNION ALL SELECT '2017-2019' AS "Year", 'Carcinoma and Other' AS "Tumour Type", 'Stage 4' AS "Stage", 'South of England' AS "Region", 'All' AS "Sex", 'Age 80+' AS "Age", SUM(statisticofinterest_pancreas) as statistic_of_interest FROM tumour_cohort_linked_pancreas WHERE DIAGNOSISYEAR BETWEEN 2017 AND 2019 AND MORPH_GROUP = 'Carcinoma and Other' AND STAGE_SPLIT23 = 'Stage 4' AND SPLIT_50_TO_80 = 'Age 80+' AND REGION = 'South of England' UNION ALL SELECT '2017-2019' AS "Year", 'Carcinoma and Other' AS "Tumour Type", 'Stage 4' AS "Stage", 'South of England' AS "Region", 'Female' AS "Sex", 'Age 80+' AS "Age", SUM(statisticofinterest_pancreas) as statistic_of_interest FROM tumour_cohort_linked_pancreas WHERE DIAGNOSISYEAR BETWEEN 2017 AND 2019 AND MORPH_GROUP = 'Carcinoma and Other' AND STAGE_SPLIT23 = 'Stage 4' AND SPLIT_50_TO_80 = 'Age 80+' AND REGION = 'South of England' AND SEX = 'Female' UNION ALL SELECT '2017-2019' AS "Year", 'Carcinoma and Other' AS "Tumour Type", 'Stage 4' AS "Stage", 'South of England' AS "Region", 'Male' AS "Sex", 'Age 80+' AS "Age", SUM(statisticofinterest_pancreas) as statistic_of_interest FROM tumour_cohort_linked_pancreas WHERE DIAGNOSISYEAR BETWEEN 2017 AND 2019 AND MORPH_GROUP = 'Carcinoma and Other' AND STAGE_SPLIT23 = 'Stage 4' AND SPLIT_50_TO_80 = 'Age 80+' AND REGION = 'South of England' AND SEX = 'Male' UNION ALL SELECT '2017-2019' AS "Year", 'Carcinoma and Other' AS "Tumour Type", 'Stage unknown' AS "Stage", 'All' AS "Region", 'All' AS "Sex", 'All' AS "Age", SUM(statisticofinterest_pancreas) as statistic_of_interest FROM tumour_cohort_linked_pancreas WHERE DIAGNOSISYEAR BETWEEN 2017 AND 2019 AND MORPH_GROUP = 'Carcinoma and Other' AND STAGE_SPLIT23 = 'Stage unknown' UNION ALL SELECT '2017-2019' AS "Year", 'Carcinoma and Other' AS "Tumour Type", 'Stage unknown' AS "Stage", 'All' AS "Region", 'All' AS "Sex", 'Age 00-59' AS "Age", SUM(statisticofinterest_pancreas) as statistic_of_interest FROM tumour_cohort_linked_pancreas WHERE DIAGNOSISYEAR BETWEEN 2017 AND 2019 AND MORPH_GROUP = 'Carcinoma and Other' AND STAGE_SPLIT23 = 'Stage unknown' AND SPLIT_60_TO_80 = 'Age 00-59' UNION ALL SELECT '2017-2019' AS "Year", 'Carcinoma and Other' AS "Tumour Type", 'Stage unknown' AS "Stage", 'All' AS "Region", 'All' AS "Sex", 'Age 60-69' AS "Age", SUM(statisticofinterest_pancreas) as statistic_of_interest FROM tumour_cohort_linked_pancreas WHERE DIAGNOSISYEAR BETWEEN 2017 AND 2019 AND MORPH_GROUP = 'Carcinoma and Other' AND STAGE_SPLIT23 = 'Stage unknown' AND SPLIT_60_TO_80 = 'Age 60-69' UNION ALL SELECT '2017-2019' AS "Year", 'Carcinoma and Other' AS "Tumour Type", 'Stage unknown' AS "Stage", 'All' AS "Region", 'Female' AS "Sex", 'Age 60-69' AS "Age", SUM(statisticofinterest_pancreas) as statistic_of_interest FROM tumour_cohort_linked_pancreas WHERE DIAGNOSISYEAR BETWEEN 2017 AND 2019 AND MORPH_GROUP = 'Carcinoma and Other' AND STAGE_SPLIT23 = 'Stage unknown' AND SPLIT_60_TO_80 = 'Age 60-69' AND SEX = 'Female' UNION ALL SELECT '2017-2019' AS "Year", 'Carcinoma and Other' AS "Tumour Type", 'Stage unknown' AS "Stage", 'All' AS "Region", 'Male' AS "Sex", 'Age 60-69' AS "Age", SUM(statisticofinterest_pancreas) as statistic_of_interest FROM tumour_cohort_linked_pancreas WHERE DIAGNOSISYEAR BETWEEN 2017 AND 2019 AND MORPH_GROUP = 'Carcinoma and Other' AND STAGE_SPLIT23 = 'Stage unknown' AND SPLIT_60_TO_80 = 'Age 60-69' AND SEX = 'Male' UNION ALL SELECT '2017-2019' AS "Year", 'Carcinoma and Other' AS "Tumour Type", 'Stage unknown' AS "Stage", 'All' AS "Region", 'All' AS "Sex", 'Age 70-79' AS "Age", SUM(statisticofinterest_pancreas) as statistic_of_interest FROM tumour_cohort_linked_pancreas WHERE DIAGNOSISYEAR BETWEEN 2017 AND 2019 AND MORPH_GROUP = 'Carcinoma and Other' AND STAGE_SPLIT23 = 'Stage unknown' AND SPLIT_60_TO_80 = 'Age 70-79' UNION ALL SELECT '2017-2019' AS "Year", 'Carcinoma and Other' AS "Tumour Type", 'Stage unknown' AS "Stage", 'All' AS "Region", 'Female' AS "Sex", 'Age 70-79' AS "Age", SUM(statisticofinterest_pancreas) as statistic_of_interest FROM tumour_cohort_linked_pancreas WHERE DIAGNOSISYEAR BETWEEN 2017 AND 2019 AND MORPH_GROUP = 'Carcinoma and Other' AND STAGE_SPLIT23 = 'Stage unknown' AND SPLIT_60_TO_80 = 'Age 70-79' AND SEX = 'Female' UNION ALL SELECT '2017-2019' AS "Year", 'Carcinoma and Other' AS "Tumour Type", 'Stage unknown' AS "Stage", 'All' AS "Region", 'Male' AS "Sex", 'Age 70-79' AS "Age", SUM(statisticofinterest_pancreas) as statistic_of_interest FROM tumour_cohort_linked_pancreas WHERE DIAGNOSISYEAR BETWEEN 2017 AND 2019 AND MORPH_GROUP = 'Carcinoma and Other' AND STAGE_SPLIT23 = 'Stage unknown' AND SPLIT_60_TO_80 = 'Age 70-79' AND SEX = 'Male' UNION ALL SELECT '2017-2019' AS "Year", 'Carcinoma and Other' AS "Tumour Type", 'Stage unknown' AS "Stage", 'All' AS "Region", 'All' AS "Sex", 'Age 80+' AS "Age", SUM(statisticofinterest_pancreas) as statistic_of_interest FROM tumour_cohort_linked_pancreas WHERE DIAGNOSISYEAR BETWEEN 2017 AND 2019 AND MORPH_GROUP = 'Carcinoma and Other' AND STAGE_SPLIT23 = 'Stage unknown' AND SPLIT_60_TO_80 = 'Age 80+' UNION ALL SELECT '2017-2019' AS "Year", 'Carcinoma and Other' AS "Tumour Type", 'Stage unknown' AS "Stage", 'All' AS "Region", 'Female' AS "Sex", 'Age 80+' AS "Age", SUM(statisticofinterest_pancreas) as statistic_of_interest FROM tumour_cohort_linked_pancreas WHERE DIAGNOSISYEAR BETWEEN 2017 AND 2019 AND MORPH_GROUP = 'Carcinoma and Other' AND STAGE_SPLIT23 = 'Stage unknown' AND SPLIT_60_TO_80 = 'Age 80+' AND SEX = 'Female' UNION ALL SELECT '2017-2019' AS "Year", 'Carcinoma and Other' AS "Tumour Type", 'Stage unknown' AS "Stage", 'All' AS "Region", 'Male' AS "Sex", 'Age 80+' AS "Age", SUM(statisticofinterest_pancreas) as statistic_of_interest FROM tumour_cohort_linked_pancreas WHERE DIAGNOSISYEAR BETWEEN 2017 AND 2019 AND MORPH_GROUP = 'Carcinoma and Other' AND STAGE_SPLIT23 = 'Stage unknown' AND SPLIT_60_TO_80 = 'Age 80+' AND SEX = 'Male' UNION ALL SELECT '2017-2019' AS "Year", 'Neuroendocrine' AS "Tumour Type", 'All' AS "Stage", 'All' AS "Region", 'All' AS "Sex", 'All' AS "Age", SUM(statisticofinterest_pancreas) as statistic_of_interest FROM tumour_cohort_linked_pancreas WHERE DIAGNOSISYEAR BETWEEN 2017 AND 2019 AND MORPH_GROUP = 'Neuroendocrine' UNION ALL SELECT '2017-2019' AS "Year", 'Neuroendocrine' AS "Tumour Type", 'All' AS "Stage", 'All' AS "Region", 'All' AS "Sex", 'Age 00-49' AS "Age", SUM(statisticofinterest_pancreas) as statistic_of_interest FROM tumour_cohort_linked_pancreas WHERE DIAGNOSISYEAR BETWEEN 2017 AND 2019 AND MORPH_GROUP = 'Neuroendocrine' AND SPLIT_50_TO_70 = 'Age 00-49' UNION ALL SELECT '2017-2019' AS "Year", 'Neuroendocrine' AS "Tumour Type", 'All' AS "Stage", 'All' AS "Region", 'All' AS "Sex", 'Age 50-59' AS "Age", SUM(statisticofinterest_pancreas) as statistic_of_interest FROM tumour_cohort_linked_pancreas WHERE DIAGNOSISYEAR BETWEEN 2017 AND 2019 AND MORPH_GROUP = 'Neuroendocrine' AND SPLIT_50_TO_70 = 'Age 50-59' UNION ALL SELECT '2017-2019' AS "Year", 'Neuroendocrine' AS "Tumour Type", 'All' AS "Stage", 'All' AS "Region", 'All' AS "Sex", 'Age 60-69' AS "Age", SUM(statisticofinterest_pancreas) as statistic_of_interest FROM tumour_cohort_linked_pancreas WHERE DIAGNOSISYEAR BETWEEN 2017 AND 2019 AND MORPH_GROUP = 'Neuroendocrine' AND SPLIT_50_TO_70 = 'Age 60-69' UNION ALL SELECT '2017-2019' AS "Year", 'Neuroendocrine' AS "Tumour Type", 'All' AS "Stage", 'All' AS "Region", 'All' AS "Sex", 'Age 70+' AS "Age", SUM(statisticofinterest_pancreas) as statistic_of_interest FROM tumour_cohort_linked_pancreas WHERE DIAGNOSISYEAR BETWEEN 2017 AND 2019 AND MORPH_GROUP = 'Neuroendocrine' AND SPLIT_50_TO_70 = 'Age 70+' ) , --Geography lookup lsoatoregionlookup as ( select distinct lsoa11_code as lsoa11, case when nhs_region_2021_name in ('East of England','Midlands') then 'Midlands and East of England' when nhs_region_2021_name in ('North West', 'North East and Yorkshire') then 'North of England' when nhs_region_2021_name in ('South West','South East') then 'South of England' else nhs_region_2021_name end as region from av2019.at_geography_england where substr(lsoa11_code,1,1) = 'E' ),lsoatoalllookup as( select distinct lsoa11_code as lsoa11, 'All' as region from av2019.at_geography_england where substr(lsoa11_code,1,1) = 'E') , geoglookup as ( select * from lsoatoregionlookup union select * from lsoatoalllookup) --Sex lookup , 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 lookup --Select single years ,yearlookup as ( select n as baseyear , to_char(n) as year from (select rownum n from dual --Last year connect by level <=2019 ) --First year where n >=2013 UNION select n as baseyear ,'2013-2015' as year from (select rownum n from dual --Last year connect by level <=2015 ) --First year where n >=2013 UNION select n as baseyear ,'2014-2016' as year from (select rownum n from dual --Last year connect by level <=2016 ) --First year where n >=2014 UNION select n as baseyear ,'2015-2017' as year from (select rownum n from dual --Last year connect by level <=2017 ) --First year where n >=2015 UNION select n as baseyear ,'2016-2018' as year from (select rownum n from dual --Last year connect by level <=2018 ) --First year where n >=2016 UNION select n as baseyear ,'2017-2019' as year from (select rownum n from dual --Last year connect by level <=2019 ) --First year where n >=2017 ) --Age lookup , agelookup as ( select distinct floor(AGE/5)+1 as baseage, 'All' as age from AGE_DATA UNION select distinct floor(AGE/5)+1 as baseage, FIVEYEARAGE as age from AGE_DATA UNION select distinct floor(AGE/5)+1 as baseage, SPLIT_50_70 as age from AGE_DATA UNION select distinct floor(AGE/5)+1 as baseage, TENYEARAGE as age from AGE_DATA UNION select distinct floor(AGE/5)+1 as baseage, SPLIT_30_TO_70 as age from AGE_DATA UNION select distinct floor(AGE/5)+1 as baseage, SPLIT_70 as age from AGE_DATA UNION select distinct floor(AGE/5)+1 as baseage, SPLIT_50 as age from AGE_DATA UNION select distinct floor(AGE/5)+1 as baseage, SPLIT_50_TO_80 as age from AGE_DATA UNION select distinct floor(AGE/5)+1 as baseage, SPLIT_50_TO_70 as age from AGE_DATA UNION select distinct floor(AGE/5)+1 as baseage, SPLIT_70_80 as age from AGE_DATA UNION select distinct floor(AGE/5)+1 as baseage, SPLIT_20_50_70 as age from AGE_DATA UNION select distinct floor(AGE/5)+1 as baseage, SPLIT_20_50_70_80 as age from AGE_DATA UNION select distinct floor(AGE/5)+1 as baseage, SPLIT_30_50_70 as age from AGE_DATA UNION select distinct floor(AGE/5)+1 as baseage, SPLIT_30_50_70_80 as age from AGE_DATA UNION select distinct floor(AGE/5)+1 as baseage, SPLIT_60_70 as age from AGE_DATA UNION select distinct floor(AGE/5)+1 as baseage, SPLIT_60_TO_80 as age from AGE_DATA UNION select distinct floor(AGE/5)+1 as baseage, SPLIT_50_70_80 as age from AGE_DATA UNION select distinct floor(AGE/5)+1 as baseage, SPLIT_30 as age from AGE_DATA UNION select distinct floor(AGE/5)+1 as baseage, SPLIT_30_50 as age from AGE_DATA UNION select distinct floor(AGE/5)+1 as baseage, SPLIT_30_TO_50 as age from AGE_DATA UNION select distinct floor(AGE/5)+1 as baseage, SPLIT_20_40 as age from AGE_DATA UNION select distinct floor(AGE/5)+1 as baseage, SPLIT_20_TO_40 as age from AGE_DATA UNION select distinct floor(AGE/5)+1 as baseage, SPLIT_25 as age from AGE_DATA UNION select distinct floor(AGE/5)+1 as baseage, SPLIT_25_50 as age from AGE_DATA UNION select distinct floor(AGE/5)+1 as baseage, SPLIT_40 as age from AGE_DATA UNION select distinct floor(AGE/5)+1 as baseage, SPLIT_35 as age from AGE_DATA UNION select distinct floor(AGE/5)+1 as baseage, SPLIT_40_TO_70 as age from AGE_DATA UNION select distinct floor(AGE/5)+1 as baseage, SPLIT_5_10_20_30_50_70 as age from AGE_DATA UNION select distinct floor(AGE/5)+1 as baseage, SPLIT_20_30_50_70 as age from AGE_DATA UNION select distinct floor(AGE/5)+1 as baseage, SPLIT_20_TO_90 as age from AGE_DATA UNION select distinct floor(AGE/5)+1 as baseage, SPLIT_60_70_75_80 as age from AGE_DATA UNION select distinct floor(AGE/5)+1 as baseage, SPLIT_80 as age from AGE_DATA UNION select distinct floor(AGE/5)+1 as baseage, SPLIT_70_75_80 as age from AGE_DATA UNION select distinct floor(AGE/5)+1 as baseage, SPLIT_13_25_40_60_80 as age from AGE_DATA UNION select distinct floor(AGE/5)+1 as baseage, SPLIT_25_40_60_80 as age from AGE_DATA UNION select distinct floor(AGE/5)+1 as baseage, SPLIT_25_40_60 as age from AGE_DATA UNION select distinct floor(AGE/5)+1 as baseage, SPLIT_25_40_TO_80 as age from AGE_DATA UNION select distinct floor(AGE/5)+1 as baseage, SPLIT_5_THEN_10 as age from AGE_DATA UNION select distinct floor(AGE/5)+1 as baseage, SPLIT_60 as age from AGE_DATA UNION select distinct floor(AGE/5)+1 as baseage, SPLIT_60_80 as age from AGE_DATA UNION select distinct floor(AGE/5)+1 as baseage, SPLIT_40_TO_80 as age from AGE_DATA UNION select distinct floor(AGE/5)+1 as baseage, SPLIT_40_TO_90 as age from AGE_DATA UNION select distinct floor(AGE/5)+1 as baseage, SPLIT_25_70 as age from AGE_DATA UNION select distinct floor(AGE/5)+1 as baseage, SPLIT_25_60_TO_80 as age from AGE_DATA) --Populations table , population_table as ( select g.region, s.sex, y.year, a.age, sum(popcount) as popcount from ons2019.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 ), pancreas as( SELECT 'Pancreas' AS "Cancer Site", "Year" AS "Year", "Tumour Type" AS "Tumour Type", 'All' AS "Tumour Type 2", 'All' AS "Tumour Type 3", 'Not split by Basis of Diagnosis' AS "Basis of Diagnosis", case when "Stage" = 'All' then 'All stages' else "Stage" end AS "Stage", 'Not split by Stage Detail' AS "Stage Detail", 'Not split by Stage Detail 2' AS "Stage Detail 2", case when "Age" = 'All' then 'All ages' else "Age" end AS "Age", case when "Region" = 'All' then 'All England' else "Region" end AS "Region", case when "Sex" = 'All' then 'Persons' else "Sex" end AS "Sex", 'Not split by grade' AS "Grade", 'Not split by nodal status' AS "Nodal Status", statistic_of_interest as "Incidence", pops.popcount as "Population" from extractpartition_pancreas ep left outer join population_table pops on ep."Year" = pops.year and ep."Age" = pops.age and substr(ep."Region",1,4) = substr(pops.region,1,4) and (case when ep."Sex" = 'Male' then '1' when ep."Sex" = 'Female' then '2' else 'All' end) = pops.sex --End of code for pancreas ) select * from pancreas