This query is used to count the care sites associated with the place of service type.
SELECT
cs.place_of_service_concept_id,
COUNT(*) AS places_of_service_count
FROM @cdm.care_site AS cs
GROUP BY cs.place_of_service_concept_id
ORDER BY cs.place_of_service_concept_id
;
None
| Field | Description | | ---------- | ---------------------------------------------- | | place_of_service_concept_id | A foreign key that refers to a place of service concept identifier in the vocabulary. | | places_of_service_count | Number of care sites associated with the place_of_service_concept_id |
| Field | Description | | --- | --- | | place_of_service_concept_id | 8546 | | places_of_service_count | 1 |
https://github.com/OHDSI/CommonDataModel/wiki/CARE_SITE
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.