| This query provides a list of stop treatment and their frequency.
The following is a sample run of the query. The input parameters are highlighted in blue. S
SELECT stop_reason, COUNT(*) AS reason_freq
FROM @cdm.drug_exposure
WHERE stop_reason IS NOT null
GROUP BY stop_reason
ORDER BY reason_freq DESC;
None
| Field | Description | | --- | --- | | stop_reason | The reason the medication was stopped, where available. Reasons include regimen completed, changed, removed, etc. | | reason_freq | Frequency of stop reason |
| Field | Description | | --- | --- | | stop_reason | Regimen Completed | | reason_freq | 14712428 |
https://github.com/OHDSI/CommonDataModel/wiki/
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.