Skip to content

wake-forest-ctsi/neurovascular_ultrasound_registry

Repository files navigation

Welcome to your new dbt project!

Using the starter project

Try running the following commands:

  • dbt run
  • dbt test

Resources:

  • Learn more about dbt in the docs
  • Check out Discourse for commonly asked questions and answers
  • Join the chat on Slack for live discussions and support
  • Find dbt events near you
  • Check out the blog for the latest news on dbt's development and best practices
duckdb dev.duckdb
create schema raw;
set schema='raw';
create table EchoFindingCodesEmbeddedInStudy as select * from '.private/EchoFindingCodesEmbeddedInStudy.csv';
create table EchoStudies as select * from '.private/EchoStudies.csv';
.exit
select
	EchoFindingCodesEmbeddedInStudy.*
from
	DataMining.dbo.EchoStudies
	inner join DataMining.dbo.EchoFindingCodesEmbeddedInStudy on EchoStudies.PerformedProcedureID = EchoFindingCodesEmbeddedInStudy.PerformedProcedureID
where
	1 = 1
	AND EchoStudies.FormattedProcedureDate < '20240101'--@EndDate
	AND EchoStudies.StudyConfig3 like '%TRANSCRANIAL%'
;

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published