This query loads the condition_occurrence table and adds a few useful columns by joining it to the concept table.
SELECT co.*, c.concept_name as condition_name
FROM @cdm.condition_occurrence AS co
LEFT JOIN @vocab.concept as c ON co.condition_concept_id = c.concept_id
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.