Below are the database queries which are used to create this measure. These are run against a copy of the BSA prescribing data which we store in Google BigQuery. We're working on making our BigQuery tables publicly available at which point it will be possible to run and modify these queries yourself. But even where code and database queries are not directly useable by others we believe it is always preferable to make them public.
Description | Cost of omega-3 fatty acid compounds per 1000 patients |
---|---|
Why it matters | Omega-3 fatty acid compounds are essential fatty acids that can be obtained from the diet. They are licensed for adjunct to diet and statin in Type IIb or III hypertriglyceridaemia; adjunct to diet in Type IV hypertriglyceridaemia; adjunct in secondary prevention in those who have had a myocardial infarction in the preceding 3 months. The summary of national guidance for lipid management outlines the clinical pathway for primary and secondary prevention of cardiovascular disease (CVD). It states that omega-3 fatty acids should not be offered alone or in combination with a statin for the prevention of CVD. This pathway should be followed for lipid management. NICE recommends that only one omega-3 fatty acid compound is recommended in specific clinical circumstances - icosapent ethyl [Vazkepa®], and that all other omega-3 fatty acid compounds are not suitable for prescribing:
The joint clinical working group agreed with NICE recommendations and considered omega-3 fatty acid compounds suitable for inclusion in this guidance. NHS England recommend that GPs:
|
Tags | Cardiovascular system, Cost Saving, Efficacy, NHS England - items which should not routinely be prescribed in primary care, NICE |
Implies cost savings | Yes |
Authored by | richard.croker |
Checked by | christopher.wood |
Last reviewed | 2023-09-18 |
Next review due | 2025-09-18 |
History | View change history on GitHub → |
SELECT
CAST(month AS DATE) AS month,
practice AS practice_id,
SUM(actual_cost) AS numerator
FROM hscic.normalised_prescribing
WHERE bnf_code IN ("0212000ABAAAAAA", "0212000ABBBAAAA", "0212000ABBCAAAA", "0212000ABBDAAAA", "0212000ABBEAAAA", "0212000ABBGAAAA", "0212000ABBHAAAA", "0212000ABBIAAAA", "0212000ABBJAAAA", "0212000ABBKAAAA", "0212000ABBLAAAA", "0212000V0BBABAB")
GROUP BY month, practice_id
SELECT
CAST(month AS DATE) AS month,
practice AS practice_id,
SUM(total_list_size / 1000.0) AS denominator
FROM hscic.practice_statistics
GROUP BY month, practice_id