Skip to content

Commit 3e9052a

Browse files
committed
new query
1 parent 9f91312 commit 3e9052a

File tree

3 files changed

+12
-2
lines changed

3 files changed

+12
-2
lines changed
Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
SELECT week, active_patients
2+
FROM clinical_trials
3+
WHERE week = "2017-31"
4+
5+
-- Como hacer para que el test podamos generalizarlo para que sea active_patients en una fecha concreta.
6+
-- De esta forma podemos pasarle distintas fechas y mirar si en todas el test passa.
Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1,3 @@
1-
SELECT study, site, active_sites FROM clinical_trials WHERE active_sites > 0;
1+
SELECT study, site, active_sites
2+
FROM clinical_trials
3+
WHERE active_sites > 0;
Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1,3 @@
1-
SELECT study, site, randomized_patients, trial_status FROM clinical_trials WHERE randomized_patients >= 0;
1+
SELECT study, site, randomized_patients, trial_status
2+
FROM clinical_trials
3+
WHERE randomized_patients >= 0;

0 commit comments

Comments
 (0)