Dataset Viewer
Auto-converted to Parquet Duplicate
id
stringlengths
16
16
question
stringlengths
39
127
answer
stringclasses
223 values
corpus_size
int64
13
13
question_type
stringclasses
4 values
possible_answers
listlengths
2
11
qa_template
stringclasses
17 values
sql_query
stringlengths
186
1.61k
sql_response
listlengths
1
362
evidence_size
int64
1
362
4f088b54d6f27fb7
Which intervention models appear in both Dietary Supplement intervention type trials and Device intervention type trials?
Parallel
13
Subset Reasoning
[ "PARALLEL", "SINGLE_GROUP", "CROSSOVER", "SEQUENTIAL", "FACTORIAL" ]
subset_intersect
SELECT intervention_model FROM ( SELECT designs.intervention_model FROM designs JOIN interventions ON interventions.nct_id = designs.nct_id WHERE interventions.intervention_type = 'DIETARY_SUPPLEMENT' AND designs.intervention_model != '' AND designs.intervention_model IS NOT NULL AND UPPER(designs.intervention_model) NOT IN ('NA', 'N/A', 'NULL', 'NONE', 'UNKNOWN', 'NOT APPLICABLE') INTERSECT SELECT designs.intervention_model FROM designs JOIN interventions ON interventions.nct_id = designs.nct_id WHERE interventions.intervention_type = 'DEVICE' AND designs.intervention_model != '' AND designs.intervention_model IS NOT NULL AND UPPER(designs.intervention_model) NOT IN ('NA', 'N/A', 'NULL', 'NONE', 'UNKNOWN', 'NOT APPLICABLE') )
[ { "adult": null, "after_count": null, "allocation": null, "before_count": null, "caregiver_masked": null, "child": null, "comparison": null, "frequency": null, "gender": null, "has_dmc": null, "healthy_volunteers": null, "intervention_model": "PARALLEL", "interven...
1
acc0aba630074c9d
Which genders appear in both Phase 2 trials and Phase 4 trials?
All
13
Subset Reasoning
[ "ALL", "FEMALE", "MALE" ]
subset_intersect
SELECT gender FROM ( SELECT eligibilities.gender FROM eligibilities JOIN studies ON studies.nct_id = eligibilities.nct_id WHERE studies.phase = 'PHASE2' AND eligibilities.gender != '' AND eligibilities.gender IS NOT NULL AND UPPER(eligibilities.gender) NOT IN ('NA', 'N/A', 'NULL', 'NONE', 'UNKNOWN', 'NOT APPLICABLE') INTERSECT SELECT eligibilities.gender FROM eligibilities JOIN studies ON studies.nct_id = eligibilities.nct_id WHERE studies.phase = 'PHASE4' AND eligibilities.gender != '' AND eligibilities.gender IS NOT NULL AND UPPER(eligibilities.gender) NOT IN ('NA', 'N/A', 'NULL', 'NONE', 'UNKNOWN', 'NOT APPLICABLE') )
[ { "adult": null, "after_count": null, "allocation": null, "before_count": null, "caregiver_masked": null, "child": null, "comparison": null, "frequency": null, "gender": "ALL", "has_dmc": null, "healthy_volunteers": null, "intervention_model": null, "intervention_...
1
1c8c740bd63f8bd2
Which intervention types appear in both Treatment primary purpose trials and Supportive Care primary purpose trials?
Drug
13
Subset Reasoning
[ "DRUG", "OTHER", "DEVICE", "BEHAVIORAL", "BIOLOGICAL", "PROCEDURE", "DIAGNOSTIC_TEST", "DIETARY_SUPPLEMENT", "RADIATION", "COMBINATION_PRODUCT", "GENETIC" ]
subset_intersect
SELECT intervention_type FROM ( SELECT interventions.intervention_type FROM interventions JOIN designs ON designs.nct_id = interventions.nct_id WHERE designs.primary_purpose = 'TREATMENT' AND interventions.intervention_type != '' AND interventions.intervention_type IS NOT NULL AND UPPER(interventions.intervention_type) NOT IN ('NA', 'N/A', 'NULL', 'NONE', 'UNKNOWN', 'NOT APPLICABLE') INTERSECT SELECT interventions.intervention_type FROM interventions JOIN designs ON designs.nct_id = interventions.nct_id WHERE designs.primary_purpose = 'SUPPORTIVE_CARE' AND interventions.intervention_type != '' AND interventions.intervention_type IS NOT NULL AND UPPER(interventions.intervention_type) NOT IN ('NA', 'N/A', 'NULL', 'NONE', 'UNKNOWN', 'NOT APPLICABLE') )
[ { "adult": null, "after_count": null, "allocation": null, "before_count": null, "caregiver_masked": null, "child": null, "comparison": null, "frequency": null, "gender": null, "has_dmc": null, "healthy_volunteers": null, "intervention_model": null, "intervention_t...
1
ea727288482009d7
Which intervention types appear in both Supportive Care primary purpose trials and Treatment primary purpose trials?
Drug
13
Subset Reasoning
[ "DRUG", "OTHER", "DEVICE", "BEHAVIORAL", "BIOLOGICAL", "PROCEDURE", "DIAGNOSTIC_TEST", "DIETARY_SUPPLEMENT", "RADIATION", "COMBINATION_PRODUCT", "GENETIC" ]
subset_intersect
SELECT intervention_type FROM ( SELECT interventions.intervention_type FROM interventions JOIN designs ON designs.nct_id = interventions.nct_id WHERE designs.primary_purpose = 'SUPPORTIVE_CARE' AND interventions.intervention_type != '' AND interventions.intervention_type IS NOT NULL AND UPPER(interventions.intervention_type) NOT IN ('NA', 'N/A', 'NULL', 'NONE', 'UNKNOWN', 'NOT APPLICABLE') INTERSECT SELECT interventions.intervention_type FROM interventions JOIN designs ON designs.nct_id = interventions.nct_id WHERE designs.primary_purpose = 'TREATMENT' AND interventions.intervention_type != '' AND interventions.intervention_type IS NOT NULL AND UPPER(interventions.intervention_type) NOT IN ('NA', 'N/A', 'NULL', 'NONE', 'UNKNOWN', 'NOT APPLICABLE') )
[ { "adult": null, "after_count": null, "allocation": null, "before_count": null, "caregiver_masked": null, "child": null, "comparison": null, "frequency": null, "gender": null, "has_dmc": null, "healthy_volunteers": null, "intervention_model": null, "intervention_t...
1
1b1025e67614f402
Which outcome types appear in both Phase 1 trials and Phase 1/Phase 2 trials?
Primary, Secondary
13
Subset Reasoning
[ "SECONDARY", "PRIMARY", "OTHER_PRE_SPECIFIED", "POST_HOC" ]
subset_intersect
SELECT outcome_type FROM ( SELECT outcomes.outcome_type FROM outcomes JOIN studies ON studies.nct_id = outcomes.nct_id WHERE studies.phase = 'PHASE1' AND outcomes.outcome_type != '' AND outcomes.outcome_type IS NOT NULL AND UPPER(outcomes.outcome_type) NOT IN ('NA', 'N/A', 'NULL', 'NONE', 'UNKNOWN', 'NOT APPLICABLE') INTERSECT SELECT outcomes.outcome_type FROM outcomes JOIN studies ON studies.nct_id = outcomes.nct_id WHERE studies.phase = 'PHASE1/PHASE2' AND outcomes.outcome_type != '' AND outcomes.outcome_type IS NOT NULL AND UPPER(outcomes.outcome_type) NOT IN ('NA', 'N/A', 'NULL', 'NONE', 'UNKNOWN', 'NOT APPLICABLE') )
[ { "adult": null, "after_count": null, "allocation": null, "before_count": null, "caregiver_masked": null, "child": null, "comparison": null, "frequency": null, "gender": null, "has_dmc": null, "healthy_volunteers": null, "intervention_model": null, "intervention_t...
2
b1c9d60be3a57b8d
Which genders appear in both Other Pre Specified outcome type trials and Primary outcome type trials?
All
13
Subset Reasoning
[ "ALL", "FEMALE", "MALE" ]
subset_intersect
SELECT gender FROM ( SELECT eligibilities.gender FROM eligibilities JOIN outcomes ON outcomes.nct_id = eligibilities.nct_id WHERE outcomes.outcome_type = 'OTHER_PRE_SPECIFIED' AND eligibilities.gender != '' AND eligibilities.gender IS NOT NULL AND UPPER(eligibilities.gender) NOT IN ('NA', 'N/A', 'NULL', 'NONE', 'UNKNOWN', 'NOT APPLICABLE') INTERSECT SELECT eligibilities.gender FROM eligibilities JOIN outcomes ON outcomes.nct_id = eligibilities.nct_id WHERE outcomes.outcome_type = 'PRIMARY' AND eligibilities.gender != '' AND eligibilities.gender IS NOT NULL AND UPPER(eligibilities.gender) NOT IN ('NA', 'N/A', 'NULL', 'NONE', 'UNKNOWN', 'NOT APPLICABLE') )
[ { "adult": null, "after_count": null, "allocation": null, "before_count": null, "caregiver_masked": null, "child": null, "comparison": null, "frequency": null, "gender": "ALL", "has_dmc": null, "healthy_volunteers": null, "intervention_model": null, "intervention_...
1
331ddee57bbd2cfb
Which parameter types appear in both Sequential intervention model trials and Parallel intervention model trials?
Number
13
Subset Reasoning
[ "MEAN", "COUNT_OF_PARTICIPANTS", "NUMBER", "MEDIAN", "GEOMETRIC_MEAN", "LEAST_SQUARES_MEAN", "COUNT_OF_UNITS", "GEOMETRIC_LEAST_SQUARES_MEAN" ]
subset_intersect
SELECT param_type FROM ( SELECT outcomes.param_type FROM outcomes JOIN designs ON designs.nct_id = outcomes.nct_id WHERE designs.intervention_model = 'SEQUENTIAL' AND outcomes.param_type != '' AND outcomes.param_type IS NOT NULL AND UPPER(outcomes.param_type) NOT IN ('NA', 'N/A', 'NULL', 'NONE', 'UNKNOWN', 'NOT APPLICABLE') INTERSECT SELECT outcomes.param_type FROM outcomes JOIN designs ON designs.nct_id = outcomes.nct_id WHERE designs.intervention_model = 'PARALLEL' AND outcomes.param_type != '' AND outcomes.param_type IS NOT NULL AND UPPER(outcomes.param_type) NOT IN ('NA', 'N/A', 'NULL', 'NONE', 'UNKNOWN', 'NOT APPLICABLE') )
[ { "adult": null, "after_count": null, "allocation": null, "before_count": null, "caregiver_masked": null, "child": null, "comparison": null, "frequency": null, "gender": null, "has_dmc": null, "healthy_volunteers": null, "intervention_model": null, "intervention_t...
1
60f4fc60dc52d177
Which trial phases appear in both Number parameter type trials and Median parameter type trials?
Phase 3
13
Subset Reasoning
[ "PHASE2", "PHASE3", "PHASE4", "PHASE1", "PHASE1/PHASE2", "PHASE2/PHASE3", "EARLY_PHASE1" ]
subset_intersect
SELECT phase FROM ( SELECT studies.phase FROM studies JOIN outcomes ON outcomes.nct_id = studies.nct_id WHERE outcomes.param_type = 'NUMBER' AND studies.phase != '' AND studies.phase IS NOT NULL AND UPPER(studies.phase) NOT IN ('NA', 'N/A', 'NULL', 'NONE', 'UNKNOWN', 'NOT APPLICABLE') INTERSECT SELECT studies.phase FROM studies JOIN outcomes ON outcomes.nct_id = studies.nct_id WHERE outcomes.param_type = 'MEDIAN' AND studies.phase != '' AND studies.phase IS NOT NULL AND UPPER(studies.phase) NOT IN ('NA', 'N/A', 'NULL', 'NONE', 'UNKNOWN', 'NOT APPLICABLE') )
[ { "adult": null, "after_count": null, "allocation": null, "before_count": null, "caregiver_masked": null, "child": null, "comparison": null, "frequency": null, "gender": null, "has_dmc": null, "healthy_volunteers": null, "intervention_model": null, "intervention_t...
1
61953b69935832a8
Which intervention types appear in both Phase 4 trials and Phase 3 trials?
Drug
13
Subset Reasoning
[ "DRUG", "OTHER", "DEVICE", "BEHAVIORAL", "BIOLOGICAL", "PROCEDURE", "DIAGNOSTIC_TEST", "DIETARY_SUPPLEMENT", "RADIATION", "COMBINATION_PRODUCT", "GENETIC" ]
subset_intersect
SELECT intervention_type FROM ( SELECT interventions.intervention_type FROM interventions JOIN studies ON studies.nct_id = interventions.nct_id WHERE studies.phase = 'PHASE4' AND interventions.intervention_type != '' AND interventions.intervention_type IS NOT NULL AND UPPER(interventions.intervention_type) NOT IN ('NA', 'N/A', 'NULL', 'NONE', 'UNKNOWN', 'NOT APPLICABLE') INTERSECT SELECT interventions.intervention_type FROM interventions JOIN studies ON studies.nct_id = interventions.nct_id WHERE studies.phase = 'PHASE3' AND interventions.intervention_type != '' AND interventions.intervention_type IS NOT NULL AND UPPER(interventions.intervention_type) NOT IN ('NA', 'N/A', 'NULL', 'NONE', 'UNKNOWN', 'NOT APPLICABLE') )
[ { "adult": null, "after_count": null, "allocation": null, "before_count": null, "caregiver_masked": null, "child": null, "comparison": null, "frequency": null, "gender": null, "has_dmc": null, "healthy_volunteers": null, "intervention_model": null, "intervention_t...
1
0531603704207f3e
Which intervention models appear in both Biological intervention type trials and Drug intervention type trials?
Sequential
13
Subset Reasoning
[ "PARALLEL", "SINGLE_GROUP", "CROSSOVER", "SEQUENTIAL", "FACTORIAL" ]
subset_intersect
SELECT intervention_model FROM ( SELECT designs.intervention_model FROM designs JOIN interventions ON interventions.nct_id = designs.nct_id WHERE interventions.intervention_type = 'BIOLOGICAL' AND designs.intervention_model != '' AND designs.intervention_model IS NOT NULL AND UPPER(designs.intervention_model) NOT IN ('NA', 'N/A', 'NULL', 'NONE', 'UNKNOWN', 'NOT APPLICABLE') INTERSECT SELECT designs.intervention_model FROM designs JOIN interventions ON interventions.nct_id = designs.nct_id WHERE interventions.intervention_type = 'DRUG' AND designs.intervention_model != '' AND designs.intervention_model IS NOT NULL AND UPPER(designs.intervention_model) NOT IN ('NA', 'N/A', 'NULL', 'NONE', 'UNKNOWN', 'NOT APPLICABLE') )
[ { "adult": null, "after_count": null, "allocation": null, "before_count": null, "caregiver_masked": null, "child": null, "comparison": null, "frequency": null, "gender": null, "has_dmc": null, "healthy_volunteers": null, "intervention_model": "SEQUENTIAL", "interv...
1
f97e1ab5ba7ee6f3
Which parameter types appear in both Phase 1 trials and Phase 1/Phase 2 trials?
Number
13
Subset Reasoning
[ "MEAN", "COUNT_OF_PARTICIPANTS", "NUMBER", "MEDIAN", "GEOMETRIC_MEAN", "LEAST_SQUARES_MEAN", "COUNT_OF_UNITS", "GEOMETRIC_LEAST_SQUARES_MEAN" ]
subset_intersect
SELECT param_type FROM ( SELECT outcomes.param_type FROM outcomes JOIN studies ON studies.nct_id = outcomes.nct_id WHERE studies.phase = 'PHASE1' AND outcomes.param_type != '' AND outcomes.param_type IS NOT NULL AND UPPER(outcomes.param_type) NOT IN ('NA', 'N/A', 'NULL', 'NONE', 'UNKNOWN', 'NOT APPLICABLE') INTERSECT SELECT outcomes.param_type FROM outcomes JOIN studies ON studies.nct_id = outcomes.nct_id WHERE studies.phase = 'PHASE1/PHASE2' AND outcomes.param_type != '' AND outcomes.param_type IS NOT NULL AND UPPER(outcomes.param_type) NOT IN ('NA', 'N/A', 'NULL', 'NONE', 'UNKNOWN', 'NOT APPLICABLE') )
[ { "adult": null, "after_count": null, "allocation": null, "before_count": null, "caregiver_masked": null, "child": null, "comparison": null, "frequency": null, "gender": null, "has_dmc": null, "healthy_volunteers": null, "intervention_model": null, "intervention_t...
1
2d1e75b2c0718ea6
Which genders appear in both Dietary Supplement intervention type trials and Behavioral intervention type trials?
All
13
Subset Reasoning
[ "ALL", "FEMALE", "MALE" ]
subset_intersect
SELECT gender FROM ( SELECT eligibilities.gender FROM eligibilities JOIN interventions ON interventions.nct_id = eligibilities.nct_id WHERE interventions.intervention_type = 'DIETARY_SUPPLEMENT' AND eligibilities.gender != '' AND eligibilities.gender IS NOT NULL AND UPPER(eligibilities.gender) NOT IN ('NA', 'N/A', 'NULL', 'NONE', 'UNKNOWN', 'NOT APPLICABLE') INTERSECT SELECT eligibilities.gender FROM eligibilities JOIN interventions ON interventions.nct_id = eligibilities.nct_id WHERE interventions.intervention_type = 'BEHAVIORAL' AND eligibilities.gender != '' AND eligibilities.gender IS NOT NULL AND UPPER(eligibilities.gender) NOT IN ('NA', 'N/A', 'NULL', 'NONE', 'UNKNOWN', 'NOT APPLICABLE') )
[ { "adult": null, "after_count": null, "allocation": null, "before_count": null, "caregiver_masked": null, "child": null, "comparison": null, "frequency": null, "gender": "ALL", "has_dmc": null, "healthy_volunteers": null, "intervention_model": null, "intervention_...
1
0c765c44b4e762ad
Which intervention types appear in both Parallel intervention model trials and Sequential intervention model trials?
Drug
13
Subset Reasoning
[ "DRUG", "OTHER", "DEVICE", "BEHAVIORAL", "BIOLOGICAL", "PROCEDURE", "DIAGNOSTIC_TEST", "DIETARY_SUPPLEMENT", "RADIATION", "COMBINATION_PRODUCT", "GENETIC" ]
subset_intersect
SELECT intervention_type FROM ( SELECT interventions.intervention_type FROM interventions JOIN designs ON designs.nct_id = interventions.nct_id WHERE designs.intervention_model = 'PARALLEL' AND interventions.intervention_type != '' AND interventions.intervention_type IS NOT NULL AND UPPER(interventions.intervention_type) NOT IN ('NA', 'N/A', 'NULL', 'NONE', 'UNKNOWN', 'NOT APPLICABLE') INTERSECT SELECT interventions.intervention_type FROM interventions JOIN designs ON designs.nct_id = interventions.nct_id WHERE designs.intervention_model = 'SEQUENTIAL' AND interventions.intervention_type != '' AND interventions.intervention_type IS NOT NULL AND UPPER(interventions.intervention_type) NOT IN ('NA', 'N/A', 'NULL', 'NONE', 'UNKNOWN', 'NOT APPLICABLE') )
[ { "adult": null, "after_count": null, "allocation": null, "before_count": null, "caregiver_masked": null, "child": null, "comparison": null, "frequency": null, "gender": null, "has_dmc": null, "healthy_volunteers": null, "intervention_model": null, "intervention_t...
1
ee5caf373daa77b8
Which intervention models appear in both Behavioral intervention type trials and Drug intervention type trials?
Parallel
13
Subset Reasoning
[ "PARALLEL", "SINGLE_GROUP", "CROSSOVER", "SEQUENTIAL", "FACTORIAL" ]
subset_intersect
SELECT intervention_model FROM ( SELECT designs.intervention_model FROM designs JOIN interventions ON interventions.nct_id = designs.nct_id WHERE interventions.intervention_type = 'BEHAVIORAL' AND designs.intervention_model != '' AND designs.intervention_model IS NOT NULL AND UPPER(designs.intervention_model) NOT IN ('NA', 'N/A', 'NULL', 'NONE', 'UNKNOWN', 'NOT APPLICABLE') INTERSECT SELECT designs.intervention_model FROM designs JOIN interventions ON interventions.nct_id = designs.nct_id WHERE interventions.intervention_type = 'DRUG' AND designs.intervention_model != '' AND designs.intervention_model IS NOT NULL AND UPPER(designs.intervention_model) NOT IN ('NA', 'N/A', 'NULL', 'NONE', 'UNKNOWN', 'NOT APPLICABLE') )
[ { "adult": null, "after_count": null, "allocation": null, "before_count": null, "caregiver_masked": null, "child": null, "comparison": null, "frequency": null, "gender": null, "has_dmc": null, "healthy_volunteers": null, "intervention_model": "PARALLEL", "interven...
1
481263e8098961b6
Which parameter types appear in both Single Group intervention model trials and Parallel intervention model trials?
Count Of Participants, Mean
13
Subset Reasoning
[ "MEAN", "COUNT_OF_PARTICIPANTS", "NUMBER", "MEDIAN", "GEOMETRIC_MEAN", "LEAST_SQUARES_MEAN", "COUNT_OF_UNITS", "GEOMETRIC_LEAST_SQUARES_MEAN" ]
subset_intersect
SELECT param_type FROM ( SELECT outcomes.param_type FROM outcomes JOIN designs ON designs.nct_id = outcomes.nct_id WHERE designs.intervention_model = 'SINGLE_GROUP' AND outcomes.param_type != '' AND outcomes.param_type IS NOT NULL AND UPPER(outcomes.param_type) NOT IN ('NA', 'N/A', 'NULL', 'NONE', 'UNKNOWN', 'NOT APPLICABLE') INTERSECT SELECT outcomes.param_type FROM outcomes JOIN designs ON designs.nct_id = outcomes.nct_id WHERE designs.intervention_model = 'PARALLEL' AND outcomes.param_type != '' AND outcomes.param_type IS NOT NULL AND UPPER(outcomes.param_type) NOT IN ('NA', 'N/A', 'NULL', 'NONE', 'UNKNOWN', 'NOT APPLICABLE') )
[ { "adult": null, "after_count": null, "allocation": null, "before_count": null, "caregiver_masked": null, "child": null, "comparison": null, "frequency": null, "gender": null, "has_dmc": null, "healthy_volunteers": null, "intervention_model": null, "intervention_t...
2
817ac36104700afd
Which genders appear in both Prevention primary purpose trials and Supportive Care primary purpose trials?
All
13
Subset Reasoning
[ "ALL", "FEMALE", "MALE" ]
subset_intersect
SELECT gender FROM ( SELECT eligibilities.gender FROM eligibilities JOIN designs ON designs.nct_id = eligibilities.nct_id WHERE designs.primary_purpose = 'PREVENTION' AND eligibilities.gender != '' AND eligibilities.gender IS NOT NULL AND UPPER(eligibilities.gender) NOT IN ('NA', 'N/A', 'NULL', 'NONE', 'UNKNOWN', 'NOT APPLICABLE') INTERSECT SELECT eligibilities.gender FROM eligibilities JOIN designs ON designs.nct_id = eligibilities.nct_id WHERE designs.primary_purpose = 'SUPPORTIVE_CARE' AND eligibilities.gender != '' AND eligibilities.gender IS NOT NULL AND UPPER(eligibilities.gender) NOT IN ('NA', 'N/A', 'NULL', 'NONE', 'UNKNOWN', 'NOT APPLICABLE') )
[ { "adult": null, "after_count": null, "allocation": null, "before_count": null, "caregiver_masked": null, "child": null, "comparison": null, "frequency": null, "gender": "ALL", "has_dmc": null, "healthy_volunteers": null, "intervention_model": null, "intervention_...
1
3aa9149049e6e9a1
Which parameter types appear in both Behavioral intervention type trials and Device intervention type trials?
Mean
13
Subset Reasoning
[ "MEAN", "COUNT_OF_PARTICIPANTS", "NUMBER", "MEDIAN", "GEOMETRIC_MEAN", "LEAST_SQUARES_MEAN", "COUNT_OF_UNITS", "GEOMETRIC_LEAST_SQUARES_MEAN" ]
subset_intersect
SELECT param_type FROM ( SELECT outcomes.param_type FROM outcomes JOIN interventions ON interventions.nct_id = outcomes.nct_id WHERE interventions.intervention_type = 'BEHAVIORAL' AND outcomes.param_type != '' AND outcomes.param_type IS NOT NULL AND UPPER(outcomes.param_type) NOT IN ('NA', 'N/A', 'NULL', 'NONE', 'UNKNOWN', 'NOT APPLICABLE') INTERSECT SELECT outcomes.param_type FROM outcomes JOIN interventions ON interventions.nct_id = outcomes.nct_id WHERE interventions.intervention_type = 'DEVICE' AND outcomes.param_type != '' AND outcomes.param_type IS NOT NULL AND UPPER(outcomes.param_type) NOT IN ('NA', 'N/A', 'NULL', 'NONE', 'UNKNOWN', 'NOT APPLICABLE') )
[ { "adult": null, "after_count": null, "allocation": null, "before_count": null, "caregiver_masked": null, "child": null, "comparison": null, "frequency": null, "gender": null, "has_dmc": null, "healthy_volunteers": null, "intervention_model": null, "intervention_t...
1
e1b61d72b4430cee
Which genders appear in both Phase 4 trials and Phase 2 trials?
All
13
Subset Reasoning
[ "ALL", "FEMALE", "MALE" ]
subset_intersect
SELECT gender FROM ( SELECT eligibilities.gender FROM eligibilities JOIN studies ON studies.nct_id = eligibilities.nct_id WHERE studies.phase = 'PHASE4' AND eligibilities.gender != '' AND eligibilities.gender IS NOT NULL AND UPPER(eligibilities.gender) NOT IN ('NA', 'N/A', 'NULL', 'NONE', 'UNKNOWN', 'NOT APPLICABLE') INTERSECT SELECT eligibilities.gender FROM eligibilities JOIN studies ON studies.nct_id = eligibilities.nct_id WHERE studies.phase = 'PHASE2' AND eligibilities.gender != '' AND eligibilities.gender IS NOT NULL AND UPPER(eligibilities.gender) NOT IN ('NA', 'N/A', 'NULL', 'NONE', 'UNKNOWN', 'NOT APPLICABLE') )
[ { "adult": null, "after_count": null, "allocation": null, "before_count": null, "caregiver_masked": null, "child": null, "comparison": null, "frequency": null, "gender": "ALL", "has_dmc": null, "healthy_volunteers": null, "intervention_model": null, "intervention_...
1
d780df4270ea2fae
Which primary purposes appear in both Secondary outcome type trials and Other Pre Specified outcome type trials?
Treatment, Supportive Care
13
Subset Reasoning
[ "TREATMENT", "PREVENTION", "OTHER", "SUPPORTIVE_CARE", "BASIC_SCIENCE", "HEALTH_SERVICES_RESEARCH", "DIAGNOSTIC", "SCREENING", "DEVICE_FEASIBILITY" ]
subset_intersect
SELECT primary_purpose FROM ( SELECT designs.primary_purpose FROM designs JOIN outcomes ON outcomes.nct_id = designs.nct_id WHERE outcomes.outcome_type = 'SECONDARY' AND designs.primary_purpose != '' AND designs.primary_purpose IS NOT NULL AND UPPER(designs.primary_purpose) NOT IN ('NA', 'N/A', 'NULL', 'NONE', 'UNKNOWN', 'NOT APPLICABLE') INTERSECT SELECT designs.primary_purpose FROM designs JOIN outcomes ON outcomes.nct_id = designs.nct_id WHERE outcomes.outcome_type = 'OTHER_PRE_SPECIFIED' AND designs.primary_purpose != '' AND designs.primary_purpose IS NOT NULL AND UPPER(designs.primary_purpose) NOT IN ('NA', 'N/A', 'NULL', 'NONE', 'UNKNOWN', 'NOT APPLICABLE') )
[ { "adult": null, "after_count": null, "allocation": null, "before_count": null, "caregiver_masked": null, "child": null, "comparison": null, "frequency": null, "gender": null, "has_dmc": null, "healthy_volunteers": null, "intervention_model": null, "intervention_t...
2
9f90aa9fbef57370
Which genders appear in both Biological intervention type trials and Dietary Supplement intervention type trials?
All
13
Subset Reasoning
[ "ALL", "FEMALE", "MALE" ]
subset_intersect
SELECT gender FROM ( SELECT eligibilities.gender FROM eligibilities JOIN interventions ON interventions.nct_id = eligibilities.nct_id WHERE interventions.intervention_type = 'BIOLOGICAL' AND eligibilities.gender != '' AND eligibilities.gender IS NOT NULL AND UPPER(eligibilities.gender) NOT IN ('NA', 'N/A', 'NULL', 'NONE', 'UNKNOWN', 'NOT APPLICABLE') INTERSECT SELECT eligibilities.gender FROM eligibilities JOIN interventions ON interventions.nct_id = eligibilities.nct_id WHERE interventions.intervention_type = 'DIETARY_SUPPLEMENT' AND eligibilities.gender != '' AND eligibilities.gender IS NOT NULL AND UPPER(eligibilities.gender) NOT IN ('NA', 'N/A', 'NULL', 'NONE', 'UNKNOWN', 'NOT APPLICABLE') )
[ { "adult": null, "after_count": null, "allocation": null, "before_count": null, "caregiver_masked": null, "child": null, "comparison": null, "frequency": null, "gender": "ALL", "has_dmc": null, "healthy_volunteers": null, "intervention_model": null, "intervention_...
1
141368ede6b942ba
Which outcome types appear in both Device intervention type trials and Biological intervention type trials?
Primary, Secondary
13
Subset Reasoning
[ "SECONDARY", "PRIMARY", "OTHER_PRE_SPECIFIED", "POST_HOC" ]
subset_intersect
SELECT outcome_type FROM ( SELECT outcomes.outcome_type FROM outcomes JOIN interventions ON interventions.nct_id = outcomes.nct_id WHERE interventions.intervention_type = 'DEVICE' AND outcomes.outcome_type != '' AND outcomes.outcome_type IS NOT NULL AND UPPER(outcomes.outcome_type) NOT IN ('NA', 'N/A', 'NULL', 'NONE', 'UNKNOWN', 'NOT APPLICABLE') INTERSECT SELECT outcomes.outcome_type FROM outcomes JOIN interventions ON interventions.nct_id = outcomes.nct_id WHERE interventions.intervention_type = 'BIOLOGICAL' AND outcomes.outcome_type != '' AND outcomes.outcome_type IS NOT NULL AND UPPER(outcomes.outcome_type) NOT IN ('NA', 'N/A', 'NULL', 'NONE', 'UNKNOWN', 'NOT APPLICABLE') )
[ { "adult": null, "after_count": null, "allocation": null, "before_count": null, "caregiver_masked": null, "child": null, "comparison": null, "frequency": null, "gender": null, "has_dmc": null, "healthy_volunteers": null, "intervention_model": null, "intervention_t...
2
5d921600185962d3
Which intervention types appear in both Sequential intervention model trials and Parallel intervention model trials?
Drug
13
Subset Reasoning
[ "DRUG", "OTHER", "DEVICE", "BEHAVIORAL", "BIOLOGICAL", "PROCEDURE", "DIAGNOSTIC_TEST", "DIETARY_SUPPLEMENT", "RADIATION", "COMBINATION_PRODUCT", "GENETIC" ]
subset_intersect
SELECT intervention_type FROM ( SELECT interventions.intervention_type FROM interventions JOIN designs ON designs.nct_id = interventions.nct_id WHERE designs.intervention_model = 'SEQUENTIAL' AND interventions.intervention_type != '' AND interventions.intervention_type IS NOT NULL AND UPPER(interventions.intervention_type) NOT IN ('NA', 'N/A', 'NULL', 'NONE', 'UNKNOWN', 'NOT APPLICABLE') INTERSECT SELECT interventions.intervention_type FROM interventions JOIN designs ON designs.nct_id = interventions.nct_id WHERE designs.intervention_model = 'PARALLEL' AND interventions.intervention_type != '' AND interventions.intervention_type IS NOT NULL AND UPPER(interventions.intervention_type) NOT IN ('NA', 'N/A', 'NULL', 'NONE', 'UNKNOWN', 'NOT APPLICABLE') )
[ { "adult": null, "after_count": null, "allocation": null, "before_count": null, "caregiver_masked": null, "child": null, "comparison": null, "frequency": null, "gender": null, "has_dmc": null, "healthy_volunteers": null, "intervention_model": null, "intervention_t...
1
dda2076568aab9eb
Which parameter types appear in both Phase 3 trials and Phase 1/Phase 2 trials?
Number
13
Subset Reasoning
[ "MEAN", "COUNT_OF_PARTICIPANTS", "NUMBER", "MEDIAN", "GEOMETRIC_MEAN", "LEAST_SQUARES_MEAN", "COUNT_OF_UNITS", "GEOMETRIC_LEAST_SQUARES_MEAN" ]
subset_intersect
SELECT param_type FROM ( SELECT outcomes.param_type FROM outcomes JOIN studies ON studies.nct_id = outcomes.nct_id WHERE studies.phase = 'PHASE3' AND outcomes.param_type != '' AND outcomes.param_type IS NOT NULL AND UPPER(outcomes.param_type) NOT IN ('NA', 'N/A', 'NULL', 'NONE', 'UNKNOWN', 'NOT APPLICABLE') INTERSECT SELECT outcomes.param_type FROM outcomes JOIN studies ON studies.nct_id = outcomes.nct_id WHERE studies.phase = 'PHASE1/PHASE2' AND outcomes.param_type != '' AND outcomes.param_type IS NOT NULL AND UPPER(outcomes.param_type) NOT IN ('NA', 'N/A', 'NULL', 'NONE', 'UNKNOWN', 'NOT APPLICABLE') )
[ { "adult": null, "after_count": null, "allocation": null, "before_count": null, "caregiver_masked": null, "child": null, "comparison": null, "frequency": null, "gender": null, "has_dmc": null, "healthy_volunteers": null, "intervention_model": null, "intervention_t...
1
2ce26678ab80bc2d
Which outcome types appear in both Behavioral intervention type trials and Dietary Supplement intervention type trials?
Primary, Secondary
13
Subset Reasoning
[ "SECONDARY", "PRIMARY", "OTHER_PRE_SPECIFIED", "POST_HOC" ]
subset_intersect
SELECT outcome_type FROM ( SELECT outcomes.outcome_type FROM outcomes JOIN interventions ON interventions.nct_id = outcomes.nct_id WHERE interventions.intervention_type = 'BEHAVIORAL' AND outcomes.outcome_type != '' AND outcomes.outcome_type IS NOT NULL AND UPPER(outcomes.outcome_type) NOT IN ('NA', 'N/A', 'NULL', 'NONE', 'UNKNOWN', 'NOT APPLICABLE') INTERSECT SELECT outcomes.outcome_type FROM outcomes JOIN interventions ON interventions.nct_id = outcomes.nct_id WHERE interventions.intervention_type = 'DIETARY_SUPPLEMENT' AND outcomes.outcome_type != '' AND outcomes.outcome_type IS NOT NULL AND UPPER(outcomes.outcome_type) NOT IN ('NA', 'N/A', 'NULL', 'NONE', 'UNKNOWN', 'NOT APPLICABLE') )
[ { "adult": null, "after_count": null, "allocation": null, "before_count": null, "caregiver_masked": null, "child": null, "comparison": null, "frequency": null, "gender": null, "has_dmc": null, "healthy_volunteers": null, "intervention_model": null, "intervention_t...
2
10f7c7de5e78a9d4
Which genders appear in both Drug intervention type trials and Biological intervention type trials?
All
13
Subset Reasoning
[ "ALL", "FEMALE", "MALE" ]
subset_intersect
SELECT gender FROM ( SELECT eligibilities.gender FROM eligibilities JOIN interventions ON interventions.nct_id = eligibilities.nct_id WHERE interventions.intervention_type = 'DRUG' AND eligibilities.gender != '' AND eligibilities.gender IS NOT NULL AND UPPER(eligibilities.gender) NOT IN ('NA', 'N/A', 'NULL', 'NONE', 'UNKNOWN', 'NOT APPLICABLE') INTERSECT SELECT eligibilities.gender FROM eligibilities JOIN interventions ON interventions.nct_id = eligibilities.nct_id WHERE interventions.intervention_type = 'BIOLOGICAL' AND eligibilities.gender != '' AND eligibilities.gender IS NOT NULL AND UPPER(eligibilities.gender) NOT IN ('NA', 'N/A', 'NULL', 'NONE', 'UNKNOWN', 'NOT APPLICABLE') )
[ { "adult": null, "after_count": null, "allocation": null, "before_count": null, "caregiver_masked": null, "child": null, "comparison": null, "frequency": null, "gender": "ALL", "has_dmc": null, "healthy_volunteers": null, "intervention_model": null, "intervention_...
1
f023ee5932a083a9
Which outcome types appear in both Dietary Supplement intervention type trials and Drug intervention type trials?
Primary, Secondary
13
Subset Reasoning
[ "SECONDARY", "PRIMARY", "OTHER_PRE_SPECIFIED", "POST_HOC" ]
subset_intersect
SELECT outcome_type FROM ( SELECT outcomes.outcome_type FROM outcomes JOIN interventions ON interventions.nct_id = outcomes.nct_id WHERE interventions.intervention_type = 'DIETARY_SUPPLEMENT' AND outcomes.outcome_type != '' AND outcomes.outcome_type IS NOT NULL AND UPPER(outcomes.outcome_type) NOT IN ('NA', 'N/A', 'NULL', 'NONE', 'UNKNOWN', 'NOT APPLICABLE') INTERSECT SELECT outcomes.outcome_type FROM outcomes JOIN interventions ON interventions.nct_id = outcomes.nct_id WHERE interventions.intervention_type = 'DRUG' AND outcomes.outcome_type != '' AND outcomes.outcome_type IS NOT NULL AND UPPER(outcomes.outcome_type) NOT IN ('NA', 'N/A', 'NULL', 'NONE', 'UNKNOWN', 'NOT APPLICABLE') )
[ { "adult": null, "after_count": null, "allocation": null, "before_count": null, "caregiver_masked": null, "child": null, "comparison": null, "frequency": null, "gender": null, "has_dmc": null, "healthy_volunteers": null, "intervention_model": null, "intervention_t...
2
36102506d3e363b2
Which parameter types appear in both Biological intervention type trials and Drug intervention type trials?
Number
13
Subset Reasoning
[ "MEAN", "COUNT_OF_PARTICIPANTS", "NUMBER", "MEDIAN", "GEOMETRIC_MEAN", "LEAST_SQUARES_MEAN", "COUNT_OF_UNITS", "GEOMETRIC_LEAST_SQUARES_MEAN" ]
subset_intersect
SELECT param_type FROM ( SELECT outcomes.param_type FROM outcomes JOIN interventions ON interventions.nct_id = outcomes.nct_id WHERE interventions.intervention_type = 'BIOLOGICAL' AND outcomes.param_type != '' AND outcomes.param_type IS NOT NULL AND UPPER(outcomes.param_type) NOT IN ('NA', 'N/A', 'NULL', 'NONE', 'UNKNOWN', 'NOT APPLICABLE') INTERSECT SELECT outcomes.param_type FROM outcomes JOIN interventions ON interventions.nct_id = outcomes.nct_id WHERE interventions.intervention_type = 'DRUG' AND outcomes.param_type != '' AND outcomes.param_type IS NOT NULL AND UPPER(outcomes.param_type) NOT IN ('NA', 'N/A', 'NULL', 'NONE', 'UNKNOWN', 'NOT APPLICABLE') )
[ { "adult": null, "after_count": null, "allocation": null, "before_count": null, "caregiver_masked": null, "child": null, "comparison": null, "frequency": null, "gender": null, "has_dmc": null, "healthy_volunteers": null, "intervention_model": null, "intervention_t...
1
f72c397cfe2a9853
Which genders appear in both Behavioral intervention type trials and Dietary Supplement intervention type trials?
All
13
Subset Reasoning
[ "ALL", "FEMALE", "MALE" ]
subset_intersect
SELECT gender FROM ( SELECT eligibilities.gender FROM eligibilities JOIN interventions ON interventions.nct_id = eligibilities.nct_id WHERE interventions.intervention_type = 'BEHAVIORAL' AND eligibilities.gender != '' AND eligibilities.gender IS NOT NULL AND UPPER(eligibilities.gender) NOT IN ('NA', 'N/A', 'NULL', 'NONE', 'UNKNOWN', 'NOT APPLICABLE') INTERSECT SELECT eligibilities.gender FROM eligibilities JOIN interventions ON interventions.nct_id = eligibilities.nct_id WHERE interventions.intervention_type = 'DIETARY_SUPPLEMENT' AND eligibilities.gender != '' AND eligibilities.gender IS NOT NULL AND UPPER(eligibilities.gender) NOT IN ('NA', 'N/A', 'NULL', 'NONE', 'UNKNOWN', 'NOT APPLICABLE') )
[ { "adult": null, "after_count": null, "allocation": null, "before_count": null, "caregiver_masked": null, "child": null, "comparison": null, "frequency": null, "gender": "ALL", "has_dmc": null, "healthy_volunteers": null, "intervention_model": null, "intervention_...
1
55ba7c0a5bf72e20
Which intervention types appear in both Single Group intervention model trials and Parallel intervention model trials?
Drug
13
Subset Reasoning
[ "DRUG", "OTHER", "DEVICE", "BEHAVIORAL", "BIOLOGICAL", "PROCEDURE", "DIAGNOSTIC_TEST", "DIETARY_SUPPLEMENT", "RADIATION", "COMBINATION_PRODUCT", "GENETIC" ]
subset_intersect
SELECT intervention_type FROM ( SELECT interventions.intervention_type FROM interventions JOIN designs ON designs.nct_id = interventions.nct_id WHERE designs.intervention_model = 'SINGLE_GROUP' AND interventions.intervention_type != '' AND interventions.intervention_type IS NOT NULL AND UPPER(interventions.intervention_type) NOT IN ('NA', 'N/A', 'NULL', 'NONE', 'UNKNOWN', 'NOT APPLICABLE') INTERSECT SELECT interventions.intervention_type FROM interventions JOIN designs ON designs.nct_id = interventions.nct_id WHERE designs.intervention_model = 'PARALLEL' AND interventions.intervention_type != '' AND interventions.intervention_type IS NOT NULL AND UPPER(interventions.intervention_type) NOT IN ('NA', 'N/A', 'NULL', 'NONE', 'UNKNOWN', 'NOT APPLICABLE') )
[ { "adult": null, "after_count": null, "allocation": null, "before_count": null, "caregiver_masked": null, "child": null, "comparison": null, "frequency": null, "gender": null, "has_dmc": null, "healthy_volunteers": null, "intervention_model": null, "intervention_t...
1
3c0a02c9c9834a0b
Which genders appear in both Count Of Participants parameter type trials and Mean parameter type trials?
All
13
Subset Reasoning
[ "ALL", "FEMALE", "MALE" ]
subset_intersect
SELECT gender FROM ( SELECT eligibilities.gender FROM eligibilities JOIN outcomes ON outcomes.nct_id = eligibilities.nct_id WHERE outcomes.param_type = 'COUNT_OF_PARTICIPANTS' AND eligibilities.gender != '' AND eligibilities.gender IS NOT NULL AND UPPER(eligibilities.gender) NOT IN ('NA', 'N/A', 'NULL', 'NONE', 'UNKNOWN', 'NOT APPLICABLE') INTERSECT SELECT eligibilities.gender FROM eligibilities JOIN outcomes ON outcomes.nct_id = eligibilities.nct_id WHERE outcomes.param_type = 'MEAN' AND eligibilities.gender != '' AND eligibilities.gender IS NOT NULL AND UPPER(eligibilities.gender) NOT IN ('NA', 'N/A', 'NULL', 'NONE', 'UNKNOWN', 'NOT APPLICABLE') )
[ { "adult": null, "after_count": null, "allocation": null, "before_count": null, "caregiver_masked": null, "child": null, "comparison": null, "frequency": null, "gender": "ALL", "has_dmc": null, "healthy_volunteers": null, "intervention_model": null, "intervention_...
1
b579c8f6e4f19b46
Which sponsor roles appear in both Phase 4 trials and Phase 1 trials?
Lead
13
Subset Reasoning
[ "lead", "collaborator" ]
subset_intersect
SELECT lead_or_collaborator FROM ( SELECT sponsors.lead_or_collaborator FROM sponsors JOIN studies ON studies.nct_id = sponsors.nct_id WHERE studies.phase = 'PHASE4' AND sponsors.lead_or_collaborator != '' AND sponsors.lead_or_collaborator IS NOT NULL AND UPPER(sponsors.lead_or_collaborator) NOT IN ('NA', 'N/A', 'NULL', 'NONE', 'UNKNOWN', 'NOT APPLICABLE') INTERSECT SELECT sponsors.lead_or_collaborator FROM sponsors JOIN studies ON studies.nct_id = sponsors.nct_id WHERE studies.phase = 'PHASE1' AND sponsors.lead_or_collaborator != '' AND sponsors.lead_or_collaborator IS NOT NULL AND UPPER(sponsors.lead_or_collaborator) NOT IN ('NA', 'N/A', 'NULL', 'NONE', 'UNKNOWN', 'NOT APPLICABLE') )
[ { "adult": null, "after_count": null, "allocation": null, "before_count": null, "caregiver_masked": null, "child": null, "comparison": null, "frequency": null, "gender": null, "has_dmc": null, "healthy_volunteers": null, "intervention_model": null, "intervention_t...
1
d29ed8d6b96d156f
Which intervention types appear in both Other Pre Specified outcome type trials and Secondary outcome type trials?
Other, Drug
13
Subset Reasoning
[ "DRUG", "OTHER", "DEVICE", "BEHAVIORAL", "BIOLOGICAL", "PROCEDURE", "DIAGNOSTIC_TEST", "DIETARY_SUPPLEMENT", "RADIATION", "COMBINATION_PRODUCT", "GENETIC" ]
subset_intersect
SELECT intervention_type FROM ( SELECT interventions.intervention_type FROM interventions JOIN outcomes ON outcomes.nct_id = interventions.nct_id WHERE outcomes.outcome_type = 'OTHER_PRE_SPECIFIED' AND interventions.intervention_type != '' AND interventions.intervention_type IS NOT NULL AND UPPER(interventions.intervention_type) NOT IN ('NA', 'N/A', 'NULL', 'NONE', 'UNKNOWN', 'NOT APPLICABLE') INTERSECT SELECT interventions.intervention_type FROM interventions JOIN outcomes ON outcomes.nct_id = interventions.nct_id WHERE outcomes.outcome_type = 'SECONDARY' AND interventions.intervention_type != '' AND interventions.intervention_type IS NOT NULL AND UPPER(interventions.intervention_type) NOT IN ('NA', 'N/A', 'NULL', 'NONE', 'UNKNOWN', 'NOT APPLICABLE') )
[ { "adult": null, "after_count": null, "allocation": null, "before_count": null, "caregiver_masked": null, "child": null, "comparison": null, "frequency": null, "gender": null, "has_dmc": null, "healthy_volunteers": null, "intervention_model": null, "intervention_t...
2
1a1750bd7ad3fd71
Which parameter types appear in both Phase 2 trials and Phase 3 trials?
Count Of Participants
13
Subset Reasoning
[ "MEAN", "COUNT_OF_PARTICIPANTS", "NUMBER", "MEDIAN", "GEOMETRIC_MEAN", "LEAST_SQUARES_MEAN", "COUNT_OF_UNITS", "GEOMETRIC_LEAST_SQUARES_MEAN" ]
subset_intersect
SELECT param_type FROM ( SELECT outcomes.param_type FROM outcomes JOIN studies ON studies.nct_id = outcomes.nct_id WHERE studies.phase = 'PHASE2' AND outcomes.param_type != '' AND outcomes.param_type IS NOT NULL AND UPPER(outcomes.param_type) NOT IN ('NA', 'N/A', 'NULL', 'NONE', 'UNKNOWN', 'NOT APPLICABLE') INTERSECT SELECT outcomes.param_type FROM outcomes JOIN studies ON studies.nct_id = outcomes.nct_id WHERE studies.phase = 'PHASE3' AND outcomes.param_type != '' AND outcomes.param_type IS NOT NULL AND UPPER(outcomes.param_type) NOT IN ('NA', 'N/A', 'NULL', 'NONE', 'UNKNOWN', 'NOT APPLICABLE') )
[ { "adult": null, "after_count": null, "allocation": null, "before_count": null, "caregiver_masked": null, "child": null, "comparison": null, "frequency": null, "gender": null, "has_dmc": null, "healthy_volunteers": null, "intervention_model": null, "intervention_t...
1
b971c49019077ed1
Which intervention types appear in both Single Group intervention model trials and Sequential intervention model trials?
Drug
13
Subset Reasoning
[ "DRUG", "OTHER", "DEVICE", "BEHAVIORAL", "BIOLOGICAL", "PROCEDURE", "DIAGNOSTIC_TEST", "DIETARY_SUPPLEMENT", "RADIATION", "COMBINATION_PRODUCT", "GENETIC" ]
subset_intersect
SELECT intervention_type FROM ( SELECT interventions.intervention_type FROM interventions JOIN designs ON designs.nct_id = interventions.nct_id WHERE designs.intervention_model = 'SINGLE_GROUP' AND interventions.intervention_type != '' AND interventions.intervention_type IS NOT NULL AND UPPER(interventions.intervention_type) NOT IN ('NA', 'N/A', 'NULL', 'NONE', 'UNKNOWN', 'NOT APPLICABLE') INTERSECT SELECT interventions.intervention_type FROM interventions JOIN designs ON designs.nct_id = interventions.nct_id WHERE designs.intervention_model = 'SEQUENTIAL' AND interventions.intervention_type != '' AND interventions.intervention_type IS NOT NULL AND UPPER(interventions.intervention_type) NOT IN ('NA', 'N/A', 'NULL', 'NONE', 'UNKNOWN', 'NOT APPLICABLE') )
[ { "adult": null, "after_count": null, "allocation": null, "before_count": null, "caregiver_masked": null, "child": null, "comparison": null, "frequency": null, "gender": null, "has_dmc": null, "healthy_volunteers": null, "intervention_model": null, "intervention_t...
1
fb501bf5d7e86deb
Which outcome types appear in both Behavioral intervention type trials and Drug intervention type trials?
Secondary, Primary
13
Subset Reasoning
[ "SECONDARY", "PRIMARY", "OTHER_PRE_SPECIFIED", "POST_HOC" ]
subset_intersect
SELECT outcome_type FROM ( SELECT outcomes.outcome_type FROM outcomes JOIN interventions ON interventions.nct_id = outcomes.nct_id WHERE interventions.intervention_type = 'BEHAVIORAL' AND outcomes.outcome_type != '' AND outcomes.outcome_type IS NOT NULL AND UPPER(outcomes.outcome_type) NOT IN ('NA', 'N/A', 'NULL', 'NONE', 'UNKNOWN', 'NOT APPLICABLE') INTERSECT SELECT outcomes.outcome_type FROM outcomes JOIN interventions ON interventions.nct_id = outcomes.nct_id WHERE interventions.intervention_type = 'DRUG' AND outcomes.outcome_type != '' AND outcomes.outcome_type IS NOT NULL AND UPPER(outcomes.outcome_type) NOT IN ('NA', 'N/A', 'NULL', 'NONE', 'UNKNOWN', 'NOT APPLICABLE') )
[ { "adult": null, "after_count": null, "allocation": null, "before_count": null, "caregiver_masked": null, "child": null, "comparison": null, "frequency": null, "gender": null, "has_dmc": null, "healthy_volunteers": null, "intervention_model": null, "intervention_t...
2
1111213fcbec36b0
Which outcome types appear in both Phase 1/Phase 2 trials and Phase 2 trials?
Secondary, Primary
13
Subset Reasoning
[ "SECONDARY", "PRIMARY", "OTHER_PRE_SPECIFIED", "POST_HOC" ]
subset_intersect
SELECT outcome_type FROM ( SELECT outcomes.outcome_type FROM outcomes JOIN studies ON studies.nct_id = outcomes.nct_id WHERE studies.phase = 'PHASE1/PHASE2' AND outcomes.outcome_type != '' AND outcomes.outcome_type IS NOT NULL AND UPPER(outcomes.outcome_type) NOT IN ('NA', 'N/A', 'NULL', 'NONE', 'UNKNOWN', 'NOT APPLICABLE') INTERSECT SELECT outcomes.outcome_type FROM outcomes JOIN studies ON studies.nct_id = outcomes.nct_id WHERE studies.phase = 'PHASE2' AND outcomes.outcome_type != '' AND outcomes.outcome_type IS NOT NULL AND UPPER(outcomes.outcome_type) NOT IN ('NA', 'N/A', 'NULL', 'NONE', 'UNKNOWN', 'NOT APPLICABLE') )
[ { "adult": null, "after_count": null, "allocation": null, "before_count": null, "caregiver_masked": null, "child": null, "comparison": null, "frequency": null, "gender": null, "has_dmc": null, "healthy_volunteers": null, "intervention_model": null, "intervention_t...
2
b84aa16e9fbcee11
Which genders appear in both Phase 1/Phase 2 trials and Phase 2 trials?
All
13
Subset Reasoning
[ "ALL", "FEMALE", "MALE" ]
subset_intersect
SELECT gender FROM ( SELECT eligibilities.gender FROM eligibilities JOIN studies ON studies.nct_id = eligibilities.nct_id WHERE studies.phase = 'PHASE1/PHASE2' AND eligibilities.gender != '' AND eligibilities.gender IS NOT NULL AND UPPER(eligibilities.gender) NOT IN ('NA', 'N/A', 'NULL', 'NONE', 'UNKNOWN', 'NOT APPLICABLE') INTERSECT SELECT eligibilities.gender FROM eligibilities JOIN studies ON studies.nct_id = eligibilities.nct_id WHERE studies.phase = 'PHASE2' AND eligibilities.gender != '' AND eligibilities.gender IS NOT NULL AND UPPER(eligibilities.gender) NOT IN ('NA', 'N/A', 'NULL', 'NONE', 'UNKNOWN', 'NOT APPLICABLE') )
[ { "adult": null, "after_count": null, "allocation": null, "before_count": null, "caregiver_masked": null, "child": null, "comparison": null, "frequency": null, "gender": "ALL", "has_dmc": null, "healthy_volunteers": null, "intervention_model": null, "intervention_...
1
8f214014549fd6c7
Which parameter types appear in both Phase 2 trials and Phase 4 trials?
Count Of Participants
13
Subset Reasoning
[ "MEAN", "COUNT_OF_PARTICIPANTS", "NUMBER", "MEDIAN", "GEOMETRIC_MEAN", "LEAST_SQUARES_MEAN", "COUNT_OF_UNITS", "GEOMETRIC_LEAST_SQUARES_MEAN" ]
subset_intersect
SELECT param_type FROM ( SELECT outcomes.param_type FROM outcomes JOIN studies ON studies.nct_id = outcomes.nct_id WHERE studies.phase = 'PHASE2' AND outcomes.param_type != '' AND outcomes.param_type IS NOT NULL AND UPPER(outcomes.param_type) NOT IN ('NA', 'N/A', 'NULL', 'NONE', 'UNKNOWN', 'NOT APPLICABLE') INTERSECT SELECT outcomes.param_type FROM outcomes JOIN studies ON studies.nct_id = outcomes.nct_id WHERE studies.phase = 'PHASE4' AND outcomes.param_type != '' AND outcomes.param_type IS NOT NULL AND UPPER(outcomes.param_type) NOT IN ('NA', 'N/A', 'NULL', 'NONE', 'UNKNOWN', 'NOT APPLICABLE') )
[ { "adult": null, "after_count": null, "allocation": null, "before_count": null, "caregiver_masked": null, "child": null, "comparison": null, "frequency": null, "gender": null, "has_dmc": null, "healthy_volunteers": null, "intervention_model": null, "intervention_t...
1
d6396a08d282f479
Which genders appear in both Phase 4 trials and Phase 1/Phase 2 trials?
All
13
Subset Reasoning
[ "ALL", "FEMALE", "MALE" ]
subset_intersect
SELECT gender FROM ( SELECT eligibilities.gender FROM eligibilities JOIN studies ON studies.nct_id = eligibilities.nct_id WHERE studies.phase = 'PHASE4' AND eligibilities.gender != '' AND eligibilities.gender IS NOT NULL AND UPPER(eligibilities.gender) NOT IN ('NA', 'N/A', 'NULL', 'NONE', 'UNKNOWN', 'NOT APPLICABLE') INTERSECT SELECT eligibilities.gender FROM eligibilities JOIN studies ON studies.nct_id = eligibilities.nct_id WHERE studies.phase = 'PHASE1/PHASE2' AND eligibilities.gender != '' AND eligibilities.gender IS NOT NULL AND UPPER(eligibilities.gender) NOT IN ('NA', 'N/A', 'NULL', 'NONE', 'UNKNOWN', 'NOT APPLICABLE') )
[ { "adult": null, "after_count": null, "allocation": null, "before_count": null, "caregiver_masked": null, "child": null, "comparison": null, "frequency": null, "gender": "ALL", "has_dmc": null, "healthy_volunteers": null, "intervention_model": null, "intervention_...
1
3fa76d61c08fd81e
Which genders appear in both Treatment primary purpose trials and Supportive Care primary purpose trials?
All
13
Subset Reasoning
[ "ALL", "FEMALE", "MALE" ]
subset_intersect
SELECT gender FROM ( SELECT eligibilities.gender FROM eligibilities JOIN designs ON designs.nct_id = eligibilities.nct_id WHERE designs.primary_purpose = 'TREATMENT' AND eligibilities.gender != '' AND eligibilities.gender IS NOT NULL AND UPPER(eligibilities.gender) NOT IN ('NA', 'N/A', 'NULL', 'NONE', 'UNKNOWN', 'NOT APPLICABLE') INTERSECT SELECT eligibilities.gender FROM eligibilities JOIN designs ON designs.nct_id = eligibilities.nct_id WHERE designs.primary_purpose = 'SUPPORTIVE_CARE' AND eligibilities.gender != '' AND eligibilities.gender IS NOT NULL AND UPPER(eligibilities.gender) NOT IN ('NA', 'N/A', 'NULL', 'NONE', 'UNKNOWN', 'NOT APPLICABLE') )
[ { "adult": null, "after_count": null, "allocation": null, "before_count": null, "caregiver_masked": null, "child": null, "comparison": null, "frequency": null, "gender": "ALL", "has_dmc": null, "healthy_volunteers": null, "intervention_model": null, "intervention_...
1
7f917c44296caaab
Which primary purposes appear in both Geometric Mean parameter type trials and Median parameter type trials?
Prevention
13
Subset Reasoning
[ "TREATMENT", "PREVENTION", "OTHER", "SUPPORTIVE_CARE", "BASIC_SCIENCE", "HEALTH_SERVICES_RESEARCH", "DIAGNOSTIC", "SCREENING", "DEVICE_FEASIBILITY" ]
subset_intersect
SELECT primary_purpose FROM ( SELECT designs.primary_purpose FROM designs JOIN outcomes ON outcomes.nct_id = designs.nct_id WHERE outcomes.param_type = 'GEOMETRIC_MEAN' AND designs.primary_purpose != '' AND designs.primary_purpose IS NOT NULL AND UPPER(designs.primary_purpose) NOT IN ('NA', 'N/A', 'NULL', 'NONE', 'UNKNOWN', 'NOT APPLICABLE') INTERSECT SELECT designs.primary_purpose FROM designs JOIN outcomes ON outcomes.nct_id = designs.nct_id WHERE outcomes.param_type = 'MEDIAN' AND designs.primary_purpose != '' AND designs.primary_purpose IS NOT NULL AND UPPER(designs.primary_purpose) NOT IN ('NA', 'N/A', 'NULL', 'NONE', 'UNKNOWN', 'NOT APPLICABLE') )
[ { "adult": null, "after_count": null, "allocation": null, "before_count": null, "caregiver_masked": null, "child": null, "comparison": null, "frequency": null, "gender": null, "has_dmc": null, "healthy_volunteers": null, "intervention_model": null, "intervention_t...
1
2be71030f1002bdd
Which genders appear in both Dietary Supplement intervention type trials and Drug intervention type trials?
All
13
Subset Reasoning
[ "ALL", "FEMALE", "MALE" ]
subset_intersect
SELECT gender FROM ( SELECT eligibilities.gender FROM eligibilities JOIN interventions ON interventions.nct_id = eligibilities.nct_id WHERE interventions.intervention_type = 'DIETARY_SUPPLEMENT' AND eligibilities.gender != '' AND eligibilities.gender IS NOT NULL AND UPPER(eligibilities.gender) NOT IN ('NA', 'N/A', 'NULL', 'NONE', 'UNKNOWN', 'NOT APPLICABLE') INTERSECT SELECT eligibilities.gender FROM eligibilities JOIN interventions ON interventions.nct_id = eligibilities.nct_id WHERE interventions.intervention_type = 'DRUG' AND eligibilities.gender != '' AND eligibilities.gender IS NOT NULL AND UPPER(eligibilities.gender) NOT IN ('NA', 'N/A', 'NULL', 'NONE', 'UNKNOWN', 'NOT APPLICABLE') )
[ { "adult": null, "after_count": null, "allocation": null, "before_count": null, "caregiver_masked": null, "child": null, "comparison": null, "frequency": null, "gender": "ALL", "has_dmc": null, "healthy_volunteers": null, "intervention_model": null, "intervention_...
1
1b4edfc05ca1b1d2
Which intervention types appear in both Prevention primary purpose trials and Supportive Care primary purpose trials?
Drug
13
Subset Reasoning
[ "DRUG", "OTHER", "DEVICE", "BEHAVIORAL", "BIOLOGICAL", "PROCEDURE", "DIAGNOSTIC_TEST", "DIETARY_SUPPLEMENT", "RADIATION", "COMBINATION_PRODUCT", "GENETIC" ]
subset_intersect
SELECT intervention_type FROM ( SELECT interventions.intervention_type FROM interventions JOIN designs ON designs.nct_id = interventions.nct_id WHERE designs.primary_purpose = 'PREVENTION' AND interventions.intervention_type != '' AND interventions.intervention_type IS NOT NULL AND UPPER(interventions.intervention_type) NOT IN ('NA', 'N/A', 'NULL', 'NONE', 'UNKNOWN', 'NOT APPLICABLE') INTERSECT SELECT interventions.intervention_type FROM interventions JOIN designs ON designs.nct_id = interventions.nct_id WHERE designs.primary_purpose = 'SUPPORTIVE_CARE' AND interventions.intervention_type != '' AND interventions.intervention_type IS NOT NULL AND UPPER(interventions.intervention_type) NOT IN ('NA', 'N/A', 'NULL', 'NONE', 'UNKNOWN', 'NOT APPLICABLE') )
[ { "adult": null, "after_count": null, "allocation": null, "before_count": null, "caregiver_masked": null, "child": null, "comparison": null, "frequency": null, "gender": null, "has_dmc": null, "healthy_volunteers": null, "intervention_model": null, "intervention_t...
1
fa39c5aaf7501ccd
Which intervention types appear in both Other Pre Specified outcome type trials and Primary outcome type trials?
Other, Drug
13
Subset Reasoning
[ "DRUG", "OTHER", "DEVICE", "BEHAVIORAL", "BIOLOGICAL", "PROCEDURE", "DIAGNOSTIC_TEST", "DIETARY_SUPPLEMENT", "RADIATION", "COMBINATION_PRODUCT", "GENETIC" ]
subset_intersect
SELECT intervention_type FROM ( SELECT interventions.intervention_type FROM interventions JOIN outcomes ON outcomes.nct_id = interventions.nct_id WHERE outcomes.outcome_type = 'OTHER_PRE_SPECIFIED' AND interventions.intervention_type != '' AND interventions.intervention_type IS NOT NULL AND UPPER(interventions.intervention_type) NOT IN ('NA', 'N/A', 'NULL', 'NONE', 'UNKNOWN', 'NOT APPLICABLE') INTERSECT SELECT interventions.intervention_type FROM interventions JOIN outcomes ON outcomes.nct_id = interventions.nct_id WHERE outcomes.outcome_type = 'PRIMARY' AND interventions.intervention_type != '' AND interventions.intervention_type IS NOT NULL AND UPPER(interventions.intervention_type) NOT IN ('NA', 'N/A', 'NULL', 'NONE', 'UNKNOWN', 'NOT APPLICABLE') )
[ { "adult": null, "after_count": null, "allocation": null, "before_count": null, "caregiver_masked": null, "child": null, "comparison": null, "frequency": null, "gender": null, "has_dmc": null, "healthy_volunteers": null, "intervention_model": null, "intervention_t...
2
34facbee6b80ac3b
Which parameter types appear in both Behavioral intervention type trials and Drug intervention type trials?
Mean
13
Subset Reasoning
[ "MEAN", "COUNT_OF_PARTICIPANTS", "NUMBER", "MEDIAN", "GEOMETRIC_MEAN", "LEAST_SQUARES_MEAN", "COUNT_OF_UNITS", "GEOMETRIC_LEAST_SQUARES_MEAN" ]
subset_intersect
SELECT param_type FROM ( SELECT outcomes.param_type FROM outcomes JOIN interventions ON interventions.nct_id = outcomes.nct_id WHERE interventions.intervention_type = 'BEHAVIORAL' AND outcomes.param_type != '' AND outcomes.param_type IS NOT NULL AND UPPER(outcomes.param_type) NOT IN ('NA', 'N/A', 'NULL', 'NONE', 'UNKNOWN', 'NOT APPLICABLE') INTERSECT SELECT outcomes.param_type FROM outcomes JOIN interventions ON interventions.nct_id = outcomes.nct_id WHERE interventions.intervention_type = 'DRUG' AND outcomes.param_type != '' AND outcomes.param_type IS NOT NULL AND UPPER(outcomes.param_type) NOT IN ('NA', 'N/A', 'NULL', 'NONE', 'UNKNOWN', 'NOT APPLICABLE') )
[ { "adult": null, "after_count": null, "allocation": null, "before_count": null, "caregiver_masked": null, "child": null, "comparison": null, "frequency": null, "gender": null, "has_dmc": null, "healthy_volunteers": null, "intervention_model": null, "intervention_t...
1
d8cf43ef8720082f
Which sponsor roles appear in both Supportive Care primary purpose trials and Prevention primary purpose trials?
Lead
13
Subset Reasoning
[ "lead", "collaborator" ]
subset_intersect
SELECT lead_or_collaborator FROM ( SELECT sponsors.lead_or_collaborator FROM sponsors JOIN designs ON designs.nct_id = sponsors.nct_id WHERE designs.primary_purpose = 'SUPPORTIVE_CARE' AND sponsors.lead_or_collaborator != '' AND sponsors.lead_or_collaborator IS NOT NULL AND UPPER(sponsors.lead_or_collaborator) NOT IN ('NA', 'N/A', 'NULL', 'NONE', 'UNKNOWN', 'NOT APPLICABLE') INTERSECT SELECT sponsors.lead_or_collaborator FROM sponsors JOIN designs ON designs.nct_id = sponsors.nct_id WHERE designs.primary_purpose = 'PREVENTION' AND sponsors.lead_or_collaborator != '' AND sponsors.lead_or_collaborator IS NOT NULL AND UPPER(sponsors.lead_or_collaborator) NOT IN ('NA', 'N/A', 'NULL', 'NONE', 'UNKNOWN', 'NOT APPLICABLE') )
[ { "adult": null, "after_count": null, "allocation": null, "before_count": null, "caregiver_masked": null, "child": null, "comparison": null, "frequency": null, "gender": null, "has_dmc": null, "healthy_volunteers": null, "intervention_model": null, "intervention_t...
1
a7563db620d89985
Which intervention types appear in both Primary outcome type trials and Other Pre Specified outcome type trials?
Other, Drug
13
Subset Reasoning
[ "DRUG", "OTHER", "DEVICE", "BEHAVIORAL", "BIOLOGICAL", "PROCEDURE", "DIAGNOSTIC_TEST", "DIETARY_SUPPLEMENT", "RADIATION", "COMBINATION_PRODUCT", "GENETIC" ]
subset_intersect
SELECT intervention_type FROM ( SELECT interventions.intervention_type FROM interventions JOIN outcomes ON outcomes.nct_id = interventions.nct_id WHERE outcomes.outcome_type = 'PRIMARY' AND interventions.intervention_type != '' AND interventions.intervention_type IS NOT NULL AND UPPER(interventions.intervention_type) NOT IN ('NA', 'N/A', 'NULL', 'NONE', 'UNKNOWN', 'NOT APPLICABLE') INTERSECT SELECT interventions.intervention_type FROM interventions JOIN outcomes ON outcomes.nct_id = interventions.nct_id WHERE outcomes.outcome_type = 'OTHER_PRE_SPECIFIED' AND interventions.intervention_type != '' AND interventions.intervention_type IS NOT NULL AND UPPER(interventions.intervention_type) NOT IN ('NA', 'N/A', 'NULL', 'NONE', 'UNKNOWN', 'NOT APPLICABLE') )
[ { "adult": null, "after_count": null, "allocation": null, "before_count": null, "caregiver_masked": null, "child": null, "comparison": null, "frequency": null, "gender": null, "has_dmc": null, "healthy_volunteers": null, "intervention_model": null, "intervention_t...
2
2acf461f692fd9c2
Which genders appear in both Single Group intervention model trials and Parallel intervention model trials?
All
13
Subset Reasoning
[ "ALL", "FEMALE", "MALE" ]
subset_intersect
SELECT gender FROM ( SELECT eligibilities.gender FROM eligibilities JOIN designs ON designs.nct_id = eligibilities.nct_id WHERE designs.intervention_model = 'SINGLE_GROUP' AND eligibilities.gender != '' AND eligibilities.gender IS NOT NULL AND UPPER(eligibilities.gender) NOT IN ('NA', 'N/A', 'NULL', 'NONE', 'UNKNOWN', 'NOT APPLICABLE') INTERSECT SELECT eligibilities.gender FROM eligibilities JOIN designs ON designs.nct_id = eligibilities.nct_id WHERE designs.intervention_model = 'PARALLEL' AND eligibilities.gender != '' AND eligibilities.gender IS NOT NULL AND UPPER(eligibilities.gender) NOT IN ('NA', 'N/A', 'NULL', 'NONE', 'UNKNOWN', 'NOT APPLICABLE') )
[ { "adult": null, "after_count": null, "allocation": null, "before_count": null, "caregiver_masked": null, "child": null, "comparison": null, "frequency": null, "gender": "ALL", "has_dmc": null, "healthy_volunteers": null, "intervention_model": null, "intervention_...
1
90f9fc1df9d2aa75
Which outcome types appear in both Prevention primary purpose trials and Supportive Care primary purpose trials?
Primary, Secondary
13
Subset Reasoning
[ "SECONDARY", "PRIMARY", "OTHER_PRE_SPECIFIED", "POST_HOC" ]
subset_intersect
SELECT outcome_type FROM ( SELECT outcomes.outcome_type FROM outcomes JOIN designs ON designs.nct_id = outcomes.nct_id WHERE designs.primary_purpose = 'PREVENTION' AND outcomes.outcome_type != '' AND outcomes.outcome_type IS NOT NULL AND UPPER(outcomes.outcome_type) NOT IN ('NA', 'N/A', 'NULL', 'NONE', 'UNKNOWN', 'NOT APPLICABLE') INTERSECT SELECT outcomes.outcome_type FROM outcomes JOIN designs ON designs.nct_id = outcomes.nct_id WHERE designs.primary_purpose = 'SUPPORTIVE_CARE' AND outcomes.outcome_type != '' AND outcomes.outcome_type IS NOT NULL AND UPPER(outcomes.outcome_type) NOT IN ('NA', 'N/A', 'NULL', 'NONE', 'UNKNOWN', 'NOT APPLICABLE') )
[ { "adult": null, "after_count": null, "allocation": null, "before_count": null, "caregiver_masked": null, "child": null, "comparison": null, "frequency": null, "gender": null, "has_dmc": null, "healthy_volunteers": null, "intervention_model": null, "intervention_t...
2
2f9ce610904dc702
Which intervention types appear in both Sequential intervention model trials and Crossover intervention model trials?
Drug
13
Subset Reasoning
[ "DRUG", "OTHER", "DEVICE", "BEHAVIORAL", "BIOLOGICAL", "PROCEDURE", "DIAGNOSTIC_TEST", "DIETARY_SUPPLEMENT", "RADIATION", "COMBINATION_PRODUCT", "GENETIC" ]
subset_intersect
SELECT intervention_type FROM ( SELECT interventions.intervention_type FROM interventions JOIN designs ON designs.nct_id = interventions.nct_id WHERE designs.intervention_model = 'SEQUENTIAL' AND interventions.intervention_type != '' AND interventions.intervention_type IS NOT NULL AND UPPER(interventions.intervention_type) NOT IN ('NA', 'N/A', 'NULL', 'NONE', 'UNKNOWN', 'NOT APPLICABLE') INTERSECT SELECT interventions.intervention_type FROM interventions JOIN designs ON designs.nct_id = interventions.nct_id WHERE designs.intervention_model = 'CROSSOVER' AND interventions.intervention_type != '' AND interventions.intervention_type IS NOT NULL AND UPPER(interventions.intervention_type) NOT IN ('NA', 'N/A', 'NULL', 'NONE', 'UNKNOWN', 'NOT APPLICABLE') )
[ { "adult": null, "after_count": null, "allocation": null, "before_count": null, "caregiver_masked": null, "child": null, "comparison": null, "frequency": null, "gender": null, "has_dmc": null, "healthy_volunteers": null, "intervention_model": null, "intervention_t...
1
fafc12b823e39b9e
Which intervention models appear in both Drug intervention type trials and Dietary Supplement intervention type trials?
Parallel
13
Subset Reasoning
[ "PARALLEL", "SINGLE_GROUP", "CROSSOVER", "SEQUENTIAL", "FACTORIAL" ]
subset_intersect
SELECT intervention_model FROM ( SELECT designs.intervention_model FROM designs JOIN interventions ON interventions.nct_id = designs.nct_id WHERE interventions.intervention_type = 'DRUG' AND designs.intervention_model != '' AND designs.intervention_model IS NOT NULL AND UPPER(designs.intervention_model) NOT IN ('NA', 'N/A', 'NULL', 'NONE', 'UNKNOWN', 'NOT APPLICABLE') INTERSECT SELECT designs.intervention_model FROM designs JOIN interventions ON interventions.nct_id = designs.nct_id WHERE interventions.intervention_type = 'DIETARY_SUPPLEMENT' AND designs.intervention_model != '' AND designs.intervention_model IS NOT NULL AND UPPER(designs.intervention_model) NOT IN ('NA', 'N/A', 'NULL', 'NONE', 'UNKNOWN', 'NOT APPLICABLE') )
[ { "adult": null, "after_count": null, "allocation": null, "before_count": null, "caregiver_masked": null, "child": null, "comparison": null, "frequency": null, "gender": null, "has_dmc": null, "healthy_volunteers": null, "intervention_model": "PARALLEL", "interven...
1
050d44a973952d32
Which intervention types appear in both Secondary outcome type trials and Other Pre Specified outcome type trials?
Drug, Other
13
Subset Reasoning
[ "DRUG", "OTHER", "DEVICE", "BEHAVIORAL", "BIOLOGICAL", "PROCEDURE", "DIAGNOSTIC_TEST", "DIETARY_SUPPLEMENT", "RADIATION", "COMBINATION_PRODUCT", "GENETIC" ]
subset_intersect
SELECT intervention_type FROM ( SELECT interventions.intervention_type FROM interventions JOIN outcomes ON outcomes.nct_id = interventions.nct_id WHERE outcomes.outcome_type = 'SECONDARY' AND interventions.intervention_type != '' AND interventions.intervention_type IS NOT NULL AND UPPER(interventions.intervention_type) NOT IN ('NA', 'N/A', 'NULL', 'NONE', 'UNKNOWN', 'NOT APPLICABLE') INTERSECT SELECT interventions.intervention_type FROM interventions JOIN outcomes ON outcomes.nct_id = interventions.nct_id WHERE outcomes.outcome_type = 'OTHER_PRE_SPECIFIED' AND interventions.intervention_type != '' AND interventions.intervention_type IS NOT NULL AND UPPER(interventions.intervention_type) NOT IN ('NA', 'N/A', 'NULL', 'NONE', 'UNKNOWN', 'NOT APPLICABLE') )
[ { "adult": null, "after_count": null, "allocation": null, "before_count": null, "caregiver_masked": null, "child": null, "comparison": null, "frequency": null, "gender": null, "has_dmc": null, "healthy_volunteers": null, "intervention_model": null, "intervention_t...
2
3cd0790040b350ec
Which trial phases appear in both Supportive Care primary purpose trials and Treatment primary purpose trials?
Phase 2
13
Subset Reasoning
[ "PHASE2", "PHASE3", "PHASE4", "PHASE1", "PHASE1/PHASE2", "PHASE2/PHASE3", "EARLY_PHASE1" ]
subset_intersect
SELECT phase FROM ( SELECT studies.phase FROM studies JOIN designs ON designs.nct_id = studies.nct_id WHERE designs.primary_purpose = 'SUPPORTIVE_CARE' AND studies.phase != '' AND studies.phase IS NOT NULL AND UPPER(studies.phase) NOT IN ('NA', 'N/A', 'NULL', 'NONE', 'UNKNOWN', 'NOT APPLICABLE') INTERSECT SELECT studies.phase FROM studies JOIN designs ON designs.nct_id = studies.nct_id WHERE designs.primary_purpose = 'TREATMENT' AND studies.phase != '' AND studies.phase IS NOT NULL AND UPPER(studies.phase) NOT IN ('NA', 'N/A', 'NULL', 'NONE', 'UNKNOWN', 'NOT APPLICABLE') )
[ { "adult": null, "after_count": null, "allocation": null, "before_count": null, "caregiver_masked": null, "child": null, "comparison": null, "frequency": null, "gender": null, "has_dmc": null, "healthy_volunteers": null, "intervention_model": null, "intervention_t...
1
be7272a4f018bb3d
Which intervention types appear in both Phase 1 trials and Phase 4 trials?
Drug
13
Subset Reasoning
[ "DRUG", "OTHER", "DEVICE", "BEHAVIORAL", "BIOLOGICAL", "PROCEDURE", "DIAGNOSTIC_TEST", "DIETARY_SUPPLEMENT", "RADIATION", "COMBINATION_PRODUCT", "GENETIC" ]
subset_intersect
SELECT intervention_type FROM ( SELECT interventions.intervention_type FROM interventions JOIN studies ON studies.nct_id = interventions.nct_id WHERE studies.phase = 'PHASE1' AND interventions.intervention_type != '' AND interventions.intervention_type IS NOT NULL AND UPPER(interventions.intervention_type) NOT IN ('NA', 'N/A', 'NULL', 'NONE', 'UNKNOWN', 'NOT APPLICABLE') INTERSECT SELECT interventions.intervention_type FROM interventions JOIN studies ON studies.nct_id = interventions.nct_id WHERE studies.phase = 'PHASE4' AND interventions.intervention_type != '' AND interventions.intervention_type IS NOT NULL AND UPPER(interventions.intervention_type) NOT IN ('NA', 'N/A', 'NULL', 'NONE', 'UNKNOWN', 'NOT APPLICABLE') )
[ { "adult": null, "after_count": null, "allocation": null, "before_count": null, "caregiver_masked": null, "child": null, "comparison": null, "frequency": null, "gender": null, "has_dmc": null, "healthy_volunteers": null, "intervention_model": null, "intervention_t...
1
bf609aa270628df2
Which genders appear in both Number parameter type trials and Count Of Participants parameter type trials?
All
13
Subset Reasoning
[ "ALL", "FEMALE", "MALE" ]
subset_intersect
SELECT gender FROM ( SELECT eligibilities.gender FROM eligibilities JOIN outcomes ON outcomes.nct_id = eligibilities.nct_id WHERE outcomes.param_type = 'NUMBER' AND eligibilities.gender != '' AND eligibilities.gender IS NOT NULL AND UPPER(eligibilities.gender) NOT IN ('NA', 'N/A', 'NULL', 'NONE', 'UNKNOWN', 'NOT APPLICABLE') INTERSECT SELECT eligibilities.gender FROM eligibilities JOIN outcomes ON outcomes.nct_id = eligibilities.nct_id WHERE outcomes.param_type = 'COUNT_OF_PARTICIPANTS' AND eligibilities.gender != '' AND eligibilities.gender IS NOT NULL AND UPPER(eligibilities.gender) NOT IN ('NA', 'N/A', 'NULL', 'NONE', 'UNKNOWN', 'NOT APPLICABLE') )
[ { "adult": null, "after_count": null, "allocation": null, "before_count": null, "caregiver_masked": null, "child": null, "comparison": null, "frequency": null, "gender": "ALL", "has_dmc": null, "healthy_volunteers": null, "intervention_model": null, "intervention_...
1
710139d6235ebf7c
Which genders appear in both Phase 2 trials and Phase 3 trials?
All
13
Subset Reasoning
[ "ALL", "FEMALE", "MALE" ]
subset_intersect
SELECT gender FROM ( SELECT eligibilities.gender FROM eligibilities JOIN studies ON studies.nct_id = eligibilities.nct_id WHERE studies.phase = 'PHASE2' AND eligibilities.gender != '' AND eligibilities.gender IS NOT NULL AND UPPER(eligibilities.gender) NOT IN ('NA', 'N/A', 'NULL', 'NONE', 'UNKNOWN', 'NOT APPLICABLE') INTERSECT SELECT eligibilities.gender FROM eligibilities JOIN studies ON studies.nct_id = eligibilities.nct_id WHERE studies.phase = 'PHASE3' AND eligibilities.gender != '' AND eligibilities.gender IS NOT NULL AND UPPER(eligibilities.gender) NOT IN ('NA', 'N/A', 'NULL', 'NONE', 'UNKNOWN', 'NOT APPLICABLE') )
[ { "adult": null, "after_count": null, "allocation": null, "before_count": null, "caregiver_masked": null, "child": null, "comparison": null, "frequency": null, "gender": "ALL", "has_dmc": null, "healthy_volunteers": null, "intervention_model": null, "intervention_...
1
63da18b9a9b46320
Which genders appear in both Biological intervention type trials and Behavioral intervention type trials?
All
13
Subset Reasoning
[ "ALL", "FEMALE", "MALE" ]
subset_intersect
SELECT gender FROM ( SELECT eligibilities.gender FROM eligibilities JOIN interventions ON interventions.nct_id = eligibilities.nct_id WHERE interventions.intervention_type = 'BIOLOGICAL' AND eligibilities.gender != '' AND eligibilities.gender IS NOT NULL AND UPPER(eligibilities.gender) NOT IN ('NA', 'N/A', 'NULL', 'NONE', 'UNKNOWN', 'NOT APPLICABLE') INTERSECT SELECT eligibilities.gender FROM eligibilities JOIN interventions ON interventions.nct_id = eligibilities.nct_id WHERE interventions.intervention_type = 'BEHAVIORAL' AND eligibilities.gender != '' AND eligibilities.gender IS NOT NULL AND UPPER(eligibilities.gender) NOT IN ('NA', 'N/A', 'NULL', 'NONE', 'UNKNOWN', 'NOT APPLICABLE') )
[ { "adult": null, "after_count": null, "allocation": null, "before_count": null, "caregiver_masked": null, "child": null, "comparison": null, "frequency": null, "gender": "ALL", "has_dmc": null, "healthy_volunteers": null, "intervention_model": null, "intervention_...
1
560df1521932edfa
Which genders appear in both Count Of Participants parameter type trials and Median parameter type trials?
All
13
Subset Reasoning
[ "ALL", "FEMALE", "MALE" ]
subset_intersect
SELECT gender FROM ( SELECT eligibilities.gender FROM eligibilities JOIN outcomes ON outcomes.nct_id = eligibilities.nct_id WHERE outcomes.param_type = 'COUNT_OF_PARTICIPANTS' AND eligibilities.gender != '' AND eligibilities.gender IS NOT NULL AND UPPER(eligibilities.gender) NOT IN ('NA', 'N/A', 'NULL', 'NONE', 'UNKNOWN', 'NOT APPLICABLE') INTERSECT SELECT eligibilities.gender FROM eligibilities JOIN outcomes ON outcomes.nct_id = eligibilities.nct_id WHERE outcomes.param_type = 'MEDIAN' AND eligibilities.gender != '' AND eligibilities.gender IS NOT NULL AND UPPER(eligibilities.gender) NOT IN ('NA', 'N/A', 'NULL', 'NONE', 'UNKNOWN', 'NOT APPLICABLE') )
[ { "adult": null, "after_count": null, "allocation": null, "before_count": null, "caregiver_masked": null, "child": null, "comparison": null, "frequency": null, "gender": "ALL", "has_dmc": null, "healthy_volunteers": null, "intervention_model": null, "intervention_...
1
7f1795b34c2ab00e
Which intervention types appear in both Crossover intervention model trials and Parallel intervention model trials?
Drug
13
Subset Reasoning
[ "DRUG", "OTHER", "DEVICE", "BEHAVIORAL", "BIOLOGICAL", "PROCEDURE", "DIAGNOSTIC_TEST", "DIETARY_SUPPLEMENT", "RADIATION", "COMBINATION_PRODUCT", "GENETIC" ]
subset_intersect
SELECT intervention_type FROM ( SELECT interventions.intervention_type FROM interventions JOIN designs ON designs.nct_id = interventions.nct_id WHERE designs.intervention_model = 'CROSSOVER' AND interventions.intervention_type != '' AND interventions.intervention_type IS NOT NULL AND UPPER(interventions.intervention_type) NOT IN ('NA', 'N/A', 'NULL', 'NONE', 'UNKNOWN', 'NOT APPLICABLE') INTERSECT SELECT interventions.intervention_type FROM interventions JOIN designs ON designs.nct_id = interventions.nct_id WHERE designs.intervention_model = 'PARALLEL' AND interventions.intervention_type != '' AND interventions.intervention_type IS NOT NULL AND UPPER(interventions.intervention_type) NOT IN ('NA', 'N/A', 'NULL', 'NONE', 'UNKNOWN', 'NOT APPLICABLE') )
[ { "adult": null, "after_count": null, "allocation": null, "before_count": null, "caregiver_masked": null, "child": null, "comparison": null, "frequency": null, "gender": null, "has_dmc": null, "healthy_volunteers": null, "intervention_model": null, "intervention_t...
1
85ed914c78eab9e1
Which trial phases appear in both Dietary Supplement intervention type trials and Drug intervention type trials?
Phase 4
13
Subset Reasoning
[ "PHASE2", "PHASE3", "PHASE4", "PHASE1", "PHASE1/PHASE2", "PHASE2/PHASE3", "EARLY_PHASE1" ]
subset_intersect
SELECT phase FROM ( SELECT studies.phase FROM studies JOIN interventions ON interventions.nct_id = studies.nct_id WHERE interventions.intervention_type = 'DIETARY_SUPPLEMENT' AND studies.phase != '' AND studies.phase IS NOT NULL AND UPPER(studies.phase) NOT IN ('NA', 'N/A', 'NULL', 'NONE', 'UNKNOWN', 'NOT APPLICABLE') INTERSECT SELECT studies.phase FROM studies JOIN interventions ON interventions.nct_id = studies.nct_id WHERE interventions.intervention_type = 'DRUG' AND studies.phase != '' AND studies.phase IS NOT NULL AND UPPER(studies.phase) NOT IN ('NA', 'N/A', 'NULL', 'NONE', 'UNKNOWN', 'NOT APPLICABLE') )
[ { "adult": null, "after_count": null, "allocation": null, "before_count": null, "caregiver_masked": null, "child": null, "comparison": null, "frequency": null, "gender": null, "has_dmc": null, "healthy_volunteers": null, "intervention_model": null, "intervention_t...
1
bde20740d696e038
Which primary purposes appear in both Drug intervention type trials and Dietary Supplement intervention type trials?
Prevention
13
Subset Reasoning
[ "TREATMENT", "PREVENTION", "OTHER", "SUPPORTIVE_CARE", "BASIC_SCIENCE", "HEALTH_SERVICES_RESEARCH", "DIAGNOSTIC", "SCREENING", "DEVICE_FEASIBILITY" ]
subset_intersect
SELECT primary_purpose FROM ( SELECT designs.primary_purpose FROM designs JOIN interventions ON interventions.nct_id = designs.nct_id WHERE interventions.intervention_type = 'DRUG' AND designs.primary_purpose != '' AND designs.primary_purpose IS NOT NULL AND UPPER(designs.primary_purpose) NOT IN ('NA', 'N/A', 'NULL', 'NONE', 'UNKNOWN', 'NOT APPLICABLE') INTERSECT SELECT designs.primary_purpose FROM designs JOIN interventions ON interventions.nct_id = designs.nct_id WHERE interventions.intervention_type = 'DIETARY_SUPPLEMENT' AND designs.primary_purpose != '' AND designs.primary_purpose IS NOT NULL AND UPPER(designs.primary_purpose) NOT IN ('NA', 'N/A', 'NULL', 'NONE', 'UNKNOWN', 'NOT APPLICABLE') )
[ { "adult": null, "after_count": null, "allocation": null, "before_count": null, "caregiver_masked": null, "child": null, "comparison": null, "frequency": null, "gender": null, "has_dmc": null, "healthy_volunteers": null, "intervention_model": null, "intervention_t...
1
5e6e4e0d07fef7ee
Which outcome types appear in both Dietary Supplement intervention type trials and Device intervention type trials?
Primary, Secondary
13
Subset Reasoning
[ "SECONDARY", "PRIMARY", "OTHER_PRE_SPECIFIED", "POST_HOC" ]
subset_intersect
SELECT outcome_type FROM ( SELECT outcomes.outcome_type FROM outcomes JOIN interventions ON interventions.nct_id = outcomes.nct_id WHERE interventions.intervention_type = 'DIETARY_SUPPLEMENT' AND outcomes.outcome_type != '' AND outcomes.outcome_type IS NOT NULL AND UPPER(outcomes.outcome_type) NOT IN ('NA', 'N/A', 'NULL', 'NONE', 'UNKNOWN', 'NOT APPLICABLE') INTERSECT SELECT outcomes.outcome_type FROM outcomes JOIN interventions ON interventions.nct_id = outcomes.nct_id WHERE interventions.intervention_type = 'DEVICE' AND outcomes.outcome_type != '' AND outcomes.outcome_type IS NOT NULL AND UPPER(outcomes.outcome_type) NOT IN ('NA', 'N/A', 'NULL', 'NONE', 'UNKNOWN', 'NOT APPLICABLE') )
[ { "adult": null, "after_count": null, "allocation": null, "before_count": null, "caregiver_masked": null, "child": null, "comparison": null, "frequency": null, "gender": null, "has_dmc": null, "healthy_volunteers": null, "intervention_model": null, "intervention_t...
2
265b3f6be015f733
Which intervention types appear in both Count Of Participants parameter type trials and Median parameter type trials?
Drug, Dietary Supplement, Other
13
Subset Reasoning
[ "DRUG", "OTHER", "DEVICE", "BEHAVIORAL", "BIOLOGICAL", "PROCEDURE", "DIAGNOSTIC_TEST", "DIETARY_SUPPLEMENT", "RADIATION", "COMBINATION_PRODUCT", "GENETIC" ]
subset_intersect
SELECT intervention_type FROM ( SELECT interventions.intervention_type FROM interventions JOIN outcomes ON outcomes.nct_id = interventions.nct_id WHERE outcomes.param_type = 'COUNT_OF_PARTICIPANTS' AND interventions.intervention_type != '' AND interventions.intervention_type IS NOT NULL AND UPPER(interventions.intervention_type) NOT IN ('NA', 'N/A', 'NULL', 'NONE', 'UNKNOWN', 'NOT APPLICABLE') INTERSECT SELECT interventions.intervention_type FROM interventions JOIN outcomes ON outcomes.nct_id = interventions.nct_id WHERE outcomes.param_type = 'MEDIAN' AND interventions.intervention_type != '' AND interventions.intervention_type IS NOT NULL AND UPPER(interventions.intervention_type) NOT IN ('NA', 'N/A', 'NULL', 'NONE', 'UNKNOWN', 'NOT APPLICABLE') )
[ { "adult": null, "after_count": null, "allocation": null, "before_count": null, "caregiver_masked": null, "child": null, "comparison": null, "frequency": null, "gender": null, "has_dmc": null, "healthy_volunteers": null, "intervention_model": null, "intervention_t...
3
80ccd91321da4be2
Which genders appear in both Biological intervention type trials and Drug intervention type trials?
All
13
Subset Reasoning
[ "ALL", "FEMALE", "MALE" ]
subset_intersect
SELECT gender FROM ( SELECT eligibilities.gender FROM eligibilities JOIN interventions ON interventions.nct_id = eligibilities.nct_id WHERE interventions.intervention_type = 'BIOLOGICAL' AND eligibilities.gender != '' AND eligibilities.gender IS NOT NULL AND UPPER(eligibilities.gender) NOT IN ('NA', 'N/A', 'NULL', 'NONE', 'UNKNOWN', 'NOT APPLICABLE') INTERSECT SELECT eligibilities.gender FROM eligibilities JOIN interventions ON interventions.nct_id = eligibilities.nct_id WHERE interventions.intervention_type = 'DRUG' AND eligibilities.gender != '' AND eligibilities.gender IS NOT NULL AND UPPER(eligibilities.gender) NOT IN ('NA', 'N/A', 'NULL', 'NONE', 'UNKNOWN', 'NOT APPLICABLE') )
[ { "adult": null, "after_count": null, "allocation": null, "before_count": null, "caregiver_masked": null, "child": null, "comparison": null, "frequency": null, "gender": "ALL", "has_dmc": null, "healthy_volunteers": null, "intervention_model": null, "intervention_...
1
ed633436ec7e7351
Which genders appear in both Count Of Participants parameter type trials and Number parameter type trials?
All
13
Subset Reasoning
[ "ALL", "FEMALE", "MALE" ]
subset_intersect
SELECT gender FROM ( SELECT eligibilities.gender FROM eligibilities JOIN outcomes ON outcomes.nct_id = eligibilities.nct_id WHERE outcomes.param_type = 'COUNT_OF_PARTICIPANTS' AND eligibilities.gender != '' AND eligibilities.gender IS NOT NULL AND UPPER(eligibilities.gender) NOT IN ('NA', 'N/A', 'NULL', 'NONE', 'UNKNOWN', 'NOT APPLICABLE') INTERSECT SELECT eligibilities.gender FROM eligibilities JOIN outcomes ON outcomes.nct_id = eligibilities.nct_id WHERE outcomes.param_type = 'NUMBER' AND eligibilities.gender != '' AND eligibilities.gender IS NOT NULL AND UPPER(eligibilities.gender) NOT IN ('NA', 'N/A', 'NULL', 'NONE', 'UNKNOWN', 'NOT APPLICABLE') )
[ { "adult": null, "after_count": null, "allocation": null, "before_count": null, "caregiver_masked": null, "child": null, "comparison": null, "frequency": null, "gender": "ALL", "has_dmc": null, "healthy_volunteers": null, "intervention_model": null, "intervention_...
1
ee0efa115b8f8139
Which outcome types appear in both Supportive Care primary purpose trials and Prevention primary purpose trials?
Primary, Secondary
13
Subset Reasoning
[ "SECONDARY", "PRIMARY", "OTHER_PRE_SPECIFIED", "POST_HOC" ]
subset_intersect
SELECT outcome_type FROM ( SELECT outcomes.outcome_type FROM outcomes JOIN designs ON designs.nct_id = outcomes.nct_id WHERE designs.primary_purpose = 'SUPPORTIVE_CARE' AND outcomes.outcome_type != '' AND outcomes.outcome_type IS NOT NULL AND UPPER(outcomes.outcome_type) NOT IN ('NA', 'N/A', 'NULL', 'NONE', 'UNKNOWN', 'NOT APPLICABLE') INTERSECT SELECT outcomes.outcome_type FROM outcomes JOIN designs ON designs.nct_id = outcomes.nct_id WHERE designs.primary_purpose = 'PREVENTION' AND outcomes.outcome_type != '' AND outcomes.outcome_type IS NOT NULL AND UPPER(outcomes.outcome_type) NOT IN ('NA', 'N/A', 'NULL', 'NONE', 'UNKNOWN', 'NOT APPLICABLE') )
[ { "adult": null, "after_count": null, "allocation": null, "before_count": null, "caregiver_masked": null, "child": null, "comparison": null, "frequency": null, "gender": null, "has_dmc": null, "healthy_volunteers": null, "intervention_model": null, "intervention_t...
2
42d77f7ebdcbc1d2
Which genders appear in both Mean parameter type trials and Count Of Participants parameter type trials?
All
13
Subset Reasoning
[ "ALL", "FEMALE", "MALE" ]
subset_intersect
SELECT gender FROM ( SELECT eligibilities.gender FROM eligibilities JOIN outcomes ON outcomes.nct_id = eligibilities.nct_id WHERE outcomes.param_type = 'MEAN' AND eligibilities.gender != '' AND eligibilities.gender IS NOT NULL AND UPPER(eligibilities.gender) NOT IN ('NA', 'N/A', 'NULL', 'NONE', 'UNKNOWN', 'NOT APPLICABLE') INTERSECT SELECT eligibilities.gender FROM eligibilities JOIN outcomes ON outcomes.nct_id = eligibilities.nct_id WHERE outcomes.param_type = 'COUNT_OF_PARTICIPANTS' AND eligibilities.gender != '' AND eligibilities.gender IS NOT NULL AND UPPER(eligibilities.gender) NOT IN ('NA', 'N/A', 'NULL', 'NONE', 'UNKNOWN', 'NOT APPLICABLE') )
[ { "adult": null, "after_count": null, "allocation": null, "before_count": null, "caregiver_masked": null, "child": null, "comparison": null, "frequency": null, "gender": "ALL", "has_dmc": null, "healthy_volunteers": null, "intervention_model": null, "intervention_...
1
7e333bdbe35ebf21
Which sponsor roles appear in both Phase 1 trials and Phase 1/Phase 2 trials?
Lead
13
Subset Reasoning
[ "lead", "collaborator" ]
subset_intersect
SELECT lead_or_collaborator FROM ( SELECT sponsors.lead_or_collaborator FROM sponsors JOIN studies ON studies.nct_id = sponsors.nct_id WHERE studies.phase = 'PHASE1' AND sponsors.lead_or_collaborator != '' AND sponsors.lead_or_collaborator IS NOT NULL AND UPPER(sponsors.lead_or_collaborator) NOT IN ('NA', 'N/A', 'NULL', 'NONE', 'UNKNOWN', 'NOT APPLICABLE') INTERSECT SELECT sponsors.lead_or_collaborator FROM sponsors JOIN studies ON studies.nct_id = sponsors.nct_id WHERE studies.phase = 'PHASE1/PHASE2' AND sponsors.lead_or_collaborator != '' AND sponsors.lead_or_collaborator IS NOT NULL AND UPPER(sponsors.lead_or_collaborator) NOT IN ('NA', 'N/A', 'NULL', 'NONE', 'UNKNOWN', 'NOT APPLICABLE') )
[ { "adult": null, "after_count": null, "allocation": null, "before_count": null, "caregiver_masked": null, "child": null, "comparison": null, "frequency": null, "gender": null, "has_dmc": null, "healthy_volunteers": null, "intervention_model": null, "intervention_t...
1
ee45a30b6d2b7f44
Which trial phases appear in both Secondary outcome type trials and Other Pre Specified outcome type trials?
Phase 2, Phase 3
13
Subset Reasoning
[ "PHASE2", "PHASE3", "PHASE4", "PHASE1", "PHASE1/PHASE2", "PHASE2/PHASE3", "EARLY_PHASE1" ]
subset_intersect
SELECT phase FROM ( SELECT studies.phase FROM studies JOIN outcomes ON outcomes.nct_id = studies.nct_id WHERE outcomes.outcome_type = 'SECONDARY' AND studies.phase != '' AND studies.phase IS NOT NULL AND UPPER(studies.phase) NOT IN ('NA', 'N/A', 'NULL', 'NONE', 'UNKNOWN', 'NOT APPLICABLE') INTERSECT SELECT studies.phase FROM studies JOIN outcomes ON outcomes.nct_id = studies.nct_id WHERE outcomes.outcome_type = 'OTHER_PRE_SPECIFIED' AND studies.phase != '' AND studies.phase IS NOT NULL AND UPPER(studies.phase) NOT IN ('NA', 'N/A', 'NULL', 'NONE', 'UNKNOWN', 'NOT APPLICABLE') )
[ { "adult": null, "after_count": null, "allocation": null, "before_count": null, "caregiver_masked": null, "child": null, "comparison": null, "frequency": null, "gender": null, "has_dmc": null, "healthy_volunteers": null, "intervention_model": null, "intervention_t...
2
60cd9d37c8283d78
Which genders appear in both Secondary outcome type trials and Other Pre Specified outcome type trials?
All
13
Subset Reasoning
[ "ALL", "FEMALE", "MALE" ]
subset_intersect
SELECT gender FROM ( SELECT eligibilities.gender FROM eligibilities JOIN outcomes ON outcomes.nct_id = eligibilities.nct_id WHERE outcomes.outcome_type = 'SECONDARY' AND eligibilities.gender != '' AND eligibilities.gender IS NOT NULL AND UPPER(eligibilities.gender) NOT IN ('NA', 'N/A', 'NULL', 'NONE', 'UNKNOWN', 'NOT APPLICABLE') INTERSECT SELECT eligibilities.gender FROM eligibilities JOIN outcomes ON outcomes.nct_id = eligibilities.nct_id WHERE outcomes.outcome_type = 'OTHER_PRE_SPECIFIED' AND eligibilities.gender != '' AND eligibilities.gender IS NOT NULL AND UPPER(eligibilities.gender) NOT IN ('NA', 'N/A', 'NULL', 'NONE', 'UNKNOWN', 'NOT APPLICABLE') )
[ { "adult": null, "after_count": null, "allocation": null, "before_count": null, "caregiver_masked": null, "child": null, "comparison": null, "frequency": null, "gender": "ALL", "has_dmc": null, "healthy_volunteers": null, "intervention_model": null, "intervention_...
1
d2deb38ec292911d
Which parameter types appear in both Supportive Care primary purpose trials and Treatment primary purpose trials?
Count Of Participants, Mean
13
Subset Reasoning
[ "MEAN", "COUNT_OF_PARTICIPANTS", "NUMBER", "MEDIAN", "GEOMETRIC_MEAN", "LEAST_SQUARES_MEAN", "COUNT_OF_UNITS", "GEOMETRIC_LEAST_SQUARES_MEAN" ]
subset_intersect
SELECT param_type FROM ( SELECT outcomes.param_type FROM outcomes JOIN designs ON designs.nct_id = outcomes.nct_id WHERE designs.primary_purpose = 'SUPPORTIVE_CARE' AND outcomes.param_type != '' AND outcomes.param_type IS NOT NULL AND UPPER(outcomes.param_type) NOT IN ('NA', 'N/A', 'NULL', 'NONE', 'UNKNOWN', 'NOT APPLICABLE') INTERSECT SELECT outcomes.param_type FROM outcomes JOIN designs ON designs.nct_id = outcomes.nct_id WHERE designs.primary_purpose = 'TREATMENT' AND outcomes.param_type != '' AND outcomes.param_type IS NOT NULL AND UPPER(outcomes.param_type) NOT IN ('NA', 'N/A', 'NULL', 'NONE', 'UNKNOWN', 'NOT APPLICABLE') )
[ { "adult": null, "after_count": null, "allocation": null, "before_count": null, "caregiver_masked": null, "child": null, "comparison": null, "frequency": null, "gender": null, "has_dmc": null, "healthy_volunteers": null, "intervention_model": null, "intervention_t...
2
d382c52176114890
Which sponsor roles appear in both Treatment primary purpose trials and Supportive Care primary purpose trials?
Lead
13
Subset Reasoning
[ "lead", "collaborator" ]
subset_intersect
SELECT lead_or_collaborator FROM ( SELECT sponsors.lead_or_collaborator FROM sponsors JOIN designs ON designs.nct_id = sponsors.nct_id WHERE designs.primary_purpose = 'TREATMENT' AND sponsors.lead_or_collaborator != '' AND sponsors.lead_or_collaborator IS NOT NULL AND UPPER(sponsors.lead_or_collaborator) NOT IN ('NA', 'N/A', 'NULL', 'NONE', 'UNKNOWN', 'NOT APPLICABLE') INTERSECT SELECT sponsors.lead_or_collaborator FROM sponsors JOIN designs ON designs.nct_id = sponsors.nct_id WHERE designs.primary_purpose = 'SUPPORTIVE_CARE' AND sponsors.lead_or_collaborator != '' AND sponsors.lead_or_collaborator IS NOT NULL AND UPPER(sponsors.lead_or_collaborator) NOT IN ('NA', 'N/A', 'NULL', 'NONE', 'UNKNOWN', 'NOT APPLICABLE') )
[ { "adult": null, "after_count": null, "allocation": null, "before_count": null, "caregiver_masked": null, "child": null, "comparison": null, "frequency": null, "gender": null, "has_dmc": null, "healthy_volunteers": null, "intervention_model": null, "intervention_t...
1
f5937ba0aebd642f
Which parameter types appear in both Parallel intervention model trials and Sequential intervention model trials?
Number
13
Subset Reasoning
[ "MEAN", "COUNT_OF_PARTICIPANTS", "NUMBER", "MEDIAN", "GEOMETRIC_MEAN", "LEAST_SQUARES_MEAN", "COUNT_OF_UNITS", "GEOMETRIC_LEAST_SQUARES_MEAN" ]
subset_intersect
SELECT param_type FROM ( SELECT outcomes.param_type FROM outcomes JOIN designs ON designs.nct_id = outcomes.nct_id WHERE designs.intervention_model = 'PARALLEL' AND outcomes.param_type != '' AND outcomes.param_type IS NOT NULL AND UPPER(outcomes.param_type) NOT IN ('NA', 'N/A', 'NULL', 'NONE', 'UNKNOWN', 'NOT APPLICABLE') INTERSECT SELECT outcomes.param_type FROM outcomes JOIN designs ON designs.nct_id = outcomes.nct_id WHERE designs.intervention_model = 'SEQUENTIAL' AND outcomes.param_type != '' AND outcomes.param_type IS NOT NULL AND UPPER(outcomes.param_type) NOT IN ('NA', 'N/A', 'NULL', 'NONE', 'UNKNOWN', 'NOT APPLICABLE') )
[ { "adult": null, "after_count": null, "allocation": null, "before_count": null, "caregiver_masked": null, "child": null, "comparison": null, "frequency": null, "gender": null, "has_dmc": null, "healthy_volunteers": null, "intervention_model": null, "intervention_t...
1
6e977be69f78da30
Which genders appear in both Crossover intervention model trials and Sequential intervention model trials?
All
13
Subset Reasoning
[ "ALL", "FEMALE", "MALE" ]
subset_intersect
SELECT gender FROM ( SELECT eligibilities.gender FROM eligibilities JOIN designs ON designs.nct_id = eligibilities.nct_id WHERE designs.intervention_model = 'CROSSOVER' AND eligibilities.gender != '' AND eligibilities.gender IS NOT NULL AND UPPER(eligibilities.gender) NOT IN ('NA', 'N/A', 'NULL', 'NONE', 'UNKNOWN', 'NOT APPLICABLE') INTERSECT SELECT eligibilities.gender FROM eligibilities JOIN designs ON designs.nct_id = eligibilities.nct_id WHERE designs.intervention_model = 'SEQUENTIAL' AND eligibilities.gender != '' AND eligibilities.gender IS NOT NULL AND UPPER(eligibilities.gender) NOT IN ('NA', 'N/A', 'NULL', 'NONE', 'UNKNOWN', 'NOT APPLICABLE') )
[ { "adult": null, "after_count": null, "allocation": null, "before_count": null, "caregiver_masked": null, "child": null, "comparison": null, "frequency": null, "gender": "ALL", "has_dmc": null, "healthy_volunteers": null, "intervention_model": null, "intervention_...
1
e110c2a878e935d4
Which outcome types appear in both Phase 1/Phase 2 trials and Phase 1 trials?
Primary, Secondary
13
Subset Reasoning
[ "SECONDARY", "PRIMARY", "OTHER_PRE_SPECIFIED", "POST_HOC" ]
subset_intersect
SELECT outcome_type FROM ( SELECT outcomes.outcome_type FROM outcomes JOIN studies ON studies.nct_id = outcomes.nct_id WHERE studies.phase = 'PHASE1/PHASE2' AND outcomes.outcome_type != '' AND outcomes.outcome_type IS NOT NULL AND UPPER(outcomes.outcome_type) NOT IN ('NA', 'N/A', 'NULL', 'NONE', 'UNKNOWN', 'NOT APPLICABLE') INTERSECT SELECT outcomes.outcome_type FROM outcomes JOIN studies ON studies.nct_id = outcomes.nct_id WHERE studies.phase = 'PHASE1' AND outcomes.outcome_type != '' AND outcomes.outcome_type IS NOT NULL AND UPPER(outcomes.outcome_type) NOT IN ('NA', 'N/A', 'NULL', 'NONE', 'UNKNOWN', 'NOT APPLICABLE') )
[ { "adult": null, "after_count": null, "allocation": null, "before_count": null, "caregiver_masked": null, "child": null, "comparison": null, "frequency": null, "gender": null, "has_dmc": null, "healthy_volunteers": null, "intervention_model": null, "intervention_t...
2
df439f87e919d810
Which genders appear in both Dietary Supplement intervention type trials and Biological intervention type trials?
All
13
Subset Reasoning
[ "ALL", "FEMALE", "MALE" ]
subset_intersect
SELECT gender FROM ( SELECT eligibilities.gender FROM eligibilities JOIN interventions ON interventions.nct_id = eligibilities.nct_id WHERE interventions.intervention_type = 'DIETARY_SUPPLEMENT' AND eligibilities.gender != '' AND eligibilities.gender IS NOT NULL AND UPPER(eligibilities.gender) NOT IN ('NA', 'N/A', 'NULL', 'NONE', 'UNKNOWN', 'NOT APPLICABLE') INTERSECT SELECT eligibilities.gender FROM eligibilities JOIN interventions ON interventions.nct_id = eligibilities.nct_id WHERE interventions.intervention_type = 'BIOLOGICAL' AND eligibilities.gender != '' AND eligibilities.gender IS NOT NULL AND UPPER(eligibilities.gender) NOT IN ('NA', 'N/A', 'NULL', 'NONE', 'UNKNOWN', 'NOT APPLICABLE') )
[ { "adult": null, "after_count": null, "allocation": null, "before_count": null, "caregiver_masked": null, "child": null, "comparison": null, "frequency": null, "gender": "ALL", "has_dmc": null, "healthy_volunteers": null, "intervention_model": null, "intervention_...
1
bb96362adeb2c818
Which outcome types appear in both Biological intervention type trials and Device intervention type trials?
Primary, Secondary
13
Subset Reasoning
[ "SECONDARY", "PRIMARY", "OTHER_PRE_SPECIFIED", "POST_HOC" ]
subset_intersect
SELECT outcome_type FROM ( SELECT outcomes.outcome_type FROM outcomes JOIN interventions ON interventions.nct_id = outcomes.nct_id WHERE interventions.intervention_type = 'BIOLOGICAL' AND outcomes.outcome_type != '' AND outcomes.outcome_type IS NOT NULL AND UPPER(outcomes.outcome_type) NOT IN ('NA', 'N/A', 'NULL', 'NONE', 'UNKNOWN', 'NOT APPLICABLE') INTERSECT SELECT outcomes.outcome_type FROM outcomes JOIN interventions ON interventions.nct_id = outcomes.nct_id WHERE interventions.intervention_type = 'DEVICE' AND outcomes.outcome_type != '' AND outcomes.outcome_type IS NOT NULL AND UPPER(outcomes.outcome_type) NOT IN ('NA', 'N/A', 'NULL', 'NONE', 'UNKNOWN', 'NOT APPLICABLE') )
[ { "adult": null, "after_count": null, "allocation": null, "before_count": null, "caregiver_masked": null, "child": null, "comparison": null, "frequency": null, "gender": null, "has_dmc": null, "healthy_volunteers": null, "intervention_model": null, "intervention_t...
2
37329b4db9ba3c6e
Which genders appear in both Sequential intervention model trials and Crossover intervention model trials?
All
13
Subset Reasoning
[ "ALL", "FEMALE", "MALE" ]
subset_intersect
SELECT gender FROM ( SELECT eligibilities.gender FROM eligibilities JOIN designs ON designs.nct_id = eligibilities.nct_id WHERE designs.intervention_model = 'SEQUENTIAL' AND eligibilities.gender != '' AND eligibilities.gender IS NOT NULL AND UPPER(eligibilities.gender) NOT IN ('NA', 'N/A', 'NULL', 'NONE', 'UNKNOWN', 'NOT APPLICABLE') INTERSECT SELECT eligibilities.gender FROM eligibilities JOIN designs ON designs.nct_id = eligibilities.nct_id WHERE designs.intervention_model = 'CROSSOVER' AND eligibilities.gender != '' AND eligibilities.gender IS NOT NULL AND UPPER(eligibilities.gender) NOT IN ('NA', 'N/A', 'NULL', 'NONE', 'UNKNOWN', 'NOT APPLICABLE') )
[ { "adult": null, "after_count": null, "allocation": null, "before_count": null, "caregiver_masked": null, "child": null, "comparison": null, "frequency": null, "gender": "ALL", "has_dmc": null, "healthy_volunteers": null, "intervention_model": null, "intervention_...
1
56388fde73058891
Which parameter types appear in both Device intervention type trials and Drug intervention type trials?
Count Of Participants, Mean
13
Subset Reasoning
[ "MEAN", "COUNT_OF_PARTICIPANTS", "NUMBER", "MEDIAN", "GEOMETRIC_MEAN", "LEAST_SQUARES_MEAN", "COUNT_OF_UNITS", "GEOMETRIC_LEAST_SQUARES_MEAN" ]
subset_intersect
SELECT param_type FROM ( SELECT outcomes.param_type FROM outcomes JOIN interventions ON interventions.nct_id = outcomes.nct_id WHERE interventions.intervention_type = 'DEVICE' AND outcomes.param_type != '' AND outcomes.param_type IS NOT NULL AND UPPER(outcomes.param_type) NOT IN ('NA', 'N/A', 'NULL', 'NONE', 'UNKNOWN', 'NOT APPLICABLE') INTERSECT SELECT outcomes.param_type FROM outcomes JOIN interventions ON interventions.nct_id = outcomes.nct_id WHERE interventions.intervention_type = 'DRUG' AND outcomes.param_type != '' AND outcomes.param_type IS NOT NULL AND UPPER(outcomes.param_type) NOT IN ('NA', 'N/A', 'NULL', 'NONE', 'UNKNOWN', 'NOT APPLICABLE') )
[ { "adult": null, "after_count": null, "allocation": null, "before_count": null, "caregiver_masked": null, "child": null, "comparison": null, "frequency": null, "gender": null, "has_dmc": null, "healthy_volunteers": null, "intervention_model": null, "intervention_t...
2
7abf73edf8d07a56
Which genders appear in both Median parameter type trials and Number parameter type trials?
All
13
Subset Reasoning
[ "ALL", "FEMALE", "MALE" ]
subset_intersect
SELECT gender FROM ( SELECT eligibilities.gender FROM eligibilities JOIN outcomes ON outcomes.nct_id = eligibilities.nct_id WHERE outcomes.param_type = 'MEDIAN' AND eligibilities.gender != '' AND eligibilities.gender IS NOT NULL AND UPPER(eligibilities.gender) NOT IN ('NA', 'N/A', 'NULL', 'NONE', 'UNKNOWN', 'NOT APPLICABLE') INTERSECT SELECT eligibilities.gender FROM eligibilities JOIN outcomes ON outcomes.nct_id = eligibilities.nct_id WHERE outcomes.param_type = 'NUMBER' AND eligibilities.gender != '' AND eligibilities.gender IS NOT NULL AND UPPER(eligibilities.gender) NOT IN ('NA', 'N/A', 'NULL', 'NONE', 'UNKNOWN', 'NOT APPLICABLE') )
[ { "adult": null, "after_count": null, "allocation": null, "before_count": null, "caregiver_masked": null, "child": null, "comparison": null, "frequency": null, "gender": "ALL", "has_dmc": null, "healthy_volunteers": null, "intervention_model": null, "intervention_...
1
63f4cfc9a8fb5d18
Which genders appear in both Primary outcome type trials and Other Pre Specified outcome type trials?
All
13
Subset Reasoning
[ "ALL", "FEMALE", "MALE" ]
subset_intersect
SELECT gender FROM ( SELECT eligibilities.gender FROM eligibilities JOIN outcomes ON outcomes.nct_id = eligibilities.nct_id WHERE outcomes.outcome_type = 'PRIMARY' AND eligibilities.gender != '' AND eligibilities.gender IS NOT NULL AND UPPER(eligibilities.gender) NOT IN ('NA', 'N/A', 'NULL', 'NONE', 'UNKNOWN', 'NOT APPLICABLE') INTERSECT SELECT eligibilities.gender FROM eligibilities JOIN outcomes ON outcomes.nct_id = eligibilities.nct_id WHERE outcomes.outcome_type = 'OTHER_PRE_SPECIFIED' AND eligibilities.gender != '' AND eligibilities.gender IS NOT NULL AND UPPER(eligibilities.gender) NOT IN ('NA', 'N/A', 'NULL', 'NONE', 'UNKNOWN', 'NOT APPLICABLE') )
[ { "adult": null, "after_count": null, "allocation": null, "before_count": null, "caregiver_masked": null, "child": null, "comparison": null, "frequency": null, "gender": "ALL", "has_dmc": null, "healthy_volunteers": null, "intervention_model": null, "intervention_...
1
ba1fa2f66606493c
Which intervention types appear in both Mean parameter type trials and Count Of Participants parameter type trials?
Drug, Device
13
Subset Reasoning
[ "DRUG", "OTHER", "DEVICE", "BEHAVIORAL", "BIOLOGICAL", "PROCEDURE", "DIAGNOSTIC_TEST", "DIETARY_SUPPLEMENT", "RADIATION", "COMBINATION_PRODUCT", "GENETIC" ]
subset_intersect
SELECT intervention_type FROM ( SELECT interventions.intervention_type FROM interventions JOIN outcomes ON outcomes.nct_id = interventions.nct_id WHERE outcomes.param_type = 'MEAN' AND interventions.intervention_type != '' AND interventions.intervention_type IS NOT NULL AND UPPER(interventions.intervention_type) NOT IN ('NA', 'N/A', 'NULL', 'NONE', 'UNKNOWN', 'NOT APPLICABLE') INTERSECT SELECT interventions.intervention_type FROM interventions JOIN outcomes ON outcomes.nct_id = interventions.nct_id WHERE outcomes.param_type = 'COUNT_OF_PARTICIPANTS' AND interventions.intervention_type != '' AND interventions.intervention_type IS NOT NULL AND UPPER(interventions.intervention_type) NOT IN ('NA', 'N/A', 'NULL', 'NONE', 'UNKNOWN', 'NOT APPLICABLE') )
[ { "adult": null, "after_count": null, "allocation": null, "before_count": null, "caregiver_masked": null, "child": null, "comparison": null, "frequency": null, "gender": null, "has_dmc": null, "healthy_volunteers": null, "intervention_model": null, "intervention_t...
2
0852581d4285bb62
Which parameter types appear in both Supportive Care primary purpose trials and Prevention primary purpose trials?
Count Of Participants
13
Subset Reasoning
[ "MEAN", "COUNT_OF_PARTICIPANTS", "NUMBER", "MEDIAN", "GEOMETRIC_MEAN", "LEAST_SQUARES_MEAN", "COUNT_OF_UNITS", "GEOMETRIC_LEAST_SQUARES_MEAN" ]
subset_intersect
SELECT param_type FROM ( SELECT outcomes.param_type FROM outcomes JOIN designs ON designs.nct_id = outcomes.nct_id WHERE designs.primary_purpose = 'SUPPORTIVE_CARE' AND outcomes.param_type != '' AND outcomes.param_type IS NOT NULL AND UPPER(outcomes.param_type) NOT IN ('NA', 'N/A', 'NULL', 'NONE', 'UNKNOWN', 'NOT APPLICABLE') INTERSECT SELECT outcomes.param_type FROM outcomes JOIN designs ON designs.nct_id = outcomes.nct_id WHERE designs.primary_purpose = 'PREVENTION' AND outcomes.param_type != '' AND outcomes.param_type IS NOT NULL AND UPPER(outcomes.param_type) NOT IN ('NA', 'N/A', 'NULL', 'NONE', 'UNKNOWN', 'NOT APPLICABLE') )
[ { "adult": null, "after_count": null, "allocation": null, "before_count": null, "caregiver_masked": null, "child": null, "comparison": null, "frequency": null, "gender": null, "has_dmc": null, "healthy_volunteers": null, "intervention_model": null, "intervention_t...
1
4fc680de24f88aa8
Which genders appear in both Device intervention type trials and Biological intervention type trials?
All
13
Subset Reasoning
[ "ALL", "FEMALE", "MALE" ]
subset_intersect
SELECT gender FROM ( SELECT eligibilities.gender FROM eligibilities JOIN interventions ON interventions.nct_id = eligibilities.nct_id WHERE interventions.intervention_type = 'DEVICE' AND eligibilities.gender != '' AND eligibilities.gender IS NOT NULL AND UPPER(eligibilities.gender) NOT IN ('NA', 'N/A', 'NULL', 'NONE', 'UNKNOWN', 'NOT APPLICABLE') INTERSECT SELECT eligibilities.gender FROM eligibilities JOIN interventions ON interventions.nct_id = eligibilities.nct_id WHERE interventions.intervention_type = 'BIOLOGICAL' AND eligibilities.gender != '' AND eligibilities.gender IS NOT NULL AND UPPER(eligibilities.gender) NOT IN ('NA', 'N/A', 'NULL', 'NONE', 'UNKNOWN', 'NOT APPLICABLE') )
[ { "adult": null, "after_count": null, "allocation": null, "before_count": null, "caregiver_masked": null, "child": null, "comparison": null, "frequency": null, "gender": "ALL", "has_dmc": null, "healthy_volunteers": null, "intervention_model": null, "intervention_...
1
6788a43f997da74a
Which genders appear in both Count Of Participants parameter type trials and Geometric Mean parameter type trials?
All
13
Subset Reasoning
[ "ALL", "FEMALE", "MALE" ]
subset_intersect
SELECT gender FROM ( SELECT eligibilities.gender FROM eligibilities JOIN outcomes ON outcomes.nct_id = eligibilities.nct_id WHERE outcomes.param_type = 'COUNT_OF_PARTICIPANTS' AND eligibilities.gender != '' AND eligibilities.gender IS NOT NULL AND UPPER(eligibilities.gender) NOT IN ('NA', 'N/A', 'NULL', 'NONE', 'UNKNOWN', 'NOT APPLICABLE') INTERSECT SELECT eligibilities.gender FROM eligibilities JOIN outcomes ON outcomes.nct_id = eligibilities.nct_id WHERE outcomes.param_type = 'GEOMETRIC_MEAN' AND eligibilities.gender != '' AND eligibilities.gender IS NOT NULL AND UPPER(eligibilities.gender) NOT IN ('NA', 'N/A', 'NULL', 'NONE', 'UNKNOWN', 'NOT APPLICABLE') )
[ { "adult": null, "after_count": null, "allocation": null, "before_count": null, "caregiver_masked": null, "child": null, "comparison": null, "frequency": null, "gender": "ALL", "has_dmc": null, "healthy_volunteers": null, "intervention_model": null, "intervention_...
1
29b7e169806f0c8b
Which sponsor roles appear in both Phase 1 trials and Phase 2 trials?
Lead
13
Subset Reasoning
[ "lead", "collaborator" ]
subset_intersect
SELECT lead_or_collaborator FROM ( SELECT sponsors.lead_or_collaborator FROM sponsors JOIN studies ON studies.nct_id = sponsors.nct_id WHERE studies.phase = 'PHASE1' AND sponsors.lead_or_collaborator != '' AND sponsors.lead_or_collaborator IS NOT NULL AND UPPER(sponsors.lead_or_collaborator) NOT IN ('NA', 'N/A', 'NULL', 'NONE', 'UNKNOWN', 'NOT APPLICABLE') INTERSECT SELECT sponsors.lead_or_collaborator FROM sponsors JOIN studies ON studies.nct_id = sponsors.nct_id WHERE studies.phase = 'PHASE2' AND sponsors.lead_or_collaborator != '' AND sponsors.lead_or_collaborator IS NOT NULL AND UPPER(sponsors.lead_or_collaborator) NOT IN ('NA', 'N/A', 'NULL', 'NONE', 'UNKNOWN', 'NOT APPLICABLE') )
[ { "adult": null, "after_count": null, "allocation": null, "before_count": null, "caregiver_masked": null, "child": null, "comparison": null, "frequency": null, "gender": null, "has_dmc": null, "healthy_volunteers": null, "intervention_model": null, "intervention_t...
1
ebcfb137bd9e359e
Which intervention models appear in both Secondary outcome type trials and Other Pre Specified outcome type trials?
Single Group, Parallel
13
Subset Reasoning
[ "PARALLEL", "SINGLE_GROUP", "CROSSOVER", "SEQUENTIAL", "FACTORIAL" ]
subset_intersect
SELECT intervention_model FROM ( SELECT designs.intervention_model FROM designs JOIN outcomes ON outcomes.nct_id = designs.nct_id WHERE outcomes.outcome_type = 'SECONDARY' AND designs.intervention_model != '' AND designs.intervention_model IS NOT NULL AND UPPER(designs.intervention_model) NOT IN ('NA', 'N/A', 'NULL', 'NONE', 'UNKNOWN', 'NOT APPLICABLE') INTERSECT SELECT designs.intervention_model FROM designs JOIN outcomes ON outcomes.nct_id = designs.nct_id WHERE outcomes.outcome_type = 'OTHER_PRE_SPECIFIED' AND designs.intervention_model != '' AND designs.intervention_model IS NOT NULL AND UPPER(designs.intervention_model) NOT IN ('NA', 'N/A', 'NULL', 'NONE', 'UNKNOWN', 'NOT APPLICABLE') )
[ { "adult": null, "after_count": null, "allocation": null, "before_count": null, "caregiver_masked": null, "child": null, "comparison": null, "frequency": null, "gender": null, "has_dmc": null, "healthy_volunteers": null, "intervention_model": "SINGLE_GROUP", "inte...
2
73f7e898e9ed07d6
Which outcome types appear in both Phase 4 trials and Phase 3 trials?
Primary, Secondary
13
Subset Reasoning
[ "SECONDARY", "PRIMARY", "OTHER_PRE_SPECIFIED", "POST_HOC" ]
subset_intersect
SELECT outcome_type FROM ( SELECT outcomes.outcome_type FROM outcomes JOIN studies ON studies.nct_id = outcomes.nct_id WHERE studies.phase = 'PHASE4' AND outcomes.outcome_type != '' AND outcomes.outcome_type IS NOT NULL AND UPPER(outcomes.outcome_type) NOT IN ('NA', 'N/A', 'NULL', 'NONE', 'UNKNOWN', 'NOT APPLICABLE') INTERSECT SELECT outcomes.outcome_type FROM outcomes JOIN studies ON studies.nct_id = outcomes.nct_id WHERE studies.phase = 'PHASE3' AND outcomes.outcome_type != '' AND outcomes.outcome_type IS NOT NULL AND UPPER(outcomes.outcome_type) NOT IN ('NA', 'N/A', 'NULL', 'NONE', 'UNKNOWN', 'NOT APPLICABLE') )
[ { "adult": null, "after_count": null, "allocation": null, "before_count": null, "caregiver_masked": null, "child": null, "comparison": null, "frequency": null, "gender": null, "has_dmc": null, "healthy_volunteers": null, "intervention_model": null, "intervention_t...
2
ef23d0972e93f253
Which primary purposes appear in both Count Of Participants parameter type trials and Geometric Mean parameter type trials?
Prevention
13
Subset Reasoning
[ "TREATMENT", "PREVENTION", "OTHER", "SUPPORTIVE_CARE", "BASIC_SCIENCE", "HEALTH_SERVICES_RESEARCH", "DIAGNOSTIC", "SCREENING", "DEVICE_FEASIBILITY" ]
subset_intersect
SELECT primary_purpose FROM ( SELECT designs.primary_purpose FROM designs JOIN outcomes ON outcomes.nct_id = designs.nct_id WHERE outcomes.param_type = 'COUNT_OF_PARTICIPANTS' AND designs.primary_purpose != '' AND designs.primary_purpose IS NOT NULL AND UPPER(designs.primary_purpose) NOT IN ('NA', 'N/A', 'NULL', 'NONE', 'UNKNOWN', 'NOT APPLICABLE') INTERSECT SELECT designs.primary_purpose FROM designs JOIN outcomes ON outcomes.nct_id = designs.nct_id WHERE outcomes.param_type = 'GEOMETRIC_MEAN' AND designs.primary_purpose != '' AND designs.primary_purpose IS NOT NULL AND UPPER(designs.primary_purpose) NOT IN ('NA', 'N/A', 'NULL', 'NONE', 'UNKNOWN', 'NOT APPLICABLE') )
[ { "adult": null, "after_count": null, "allocation": null, "before_count": null, "caregiver_masked": null, "child": null, "comparison": null, "frequency": null, "gender": null, "has_dmc": null, "healthy_volunteers": null, "intervention_model": null, "intervention_t...
1
End of preview. Expand in Data Studio

Clinical Trials QA Dataset

A multi-tier question-answering benchmark for evaluating Retrieval-Augmented Generation (RAG) systems on clinical trial protocols from ClinicalTrials.gov.

Dataset Summary

This dataset provides 5,000+ question-answer pairs across three difficulty tiers, designed to benchmark RAG systems on real-world clinical trial documentation. Questions span four reasoning categories and require retrieval from protocol PDFs.

Key Features:

  • 3 difficulty tiers based on corpus size (13, 129, 1,291 protocols)
  • 18 question templates across 4 reasoning types
  • Ground truth answers with SQL evidence
  • Closed-set and open-ended questions
  • Natural language phrasing with proper formatting

Dataset Structure

Data Instances

{
  "id": "a3f2e9b8c1d4...",
  "question": "What is the most common primary purpose among trials investigating Behavioral interventions?",
  "answer": "Treatment",
  "corpus_size": 129,
  "question_type": "Evidence Synthesis",
  "possible_answers": ["Treatment", "Prevention", "Diagnostic Test", "Health Services Research"],
  "qa_template": "synthesis_ranking",
  "sql_query": "SELECT primary_purpose, COUNT(*) as frequency FROM trials WHERE intervention_type = 'BEHAVIORAL' GROUP BY primary_purpose ORDER BY frequency DESC",
  "sql_response": [
    {"primary_purpose": "TREATMENT", "frequency": 42},
    {"primary_purpose": "PREVENTION", "frequency": 15}
  ],
  "evidence_size": 5
}

Data Fields

Core Fields:

  • id (string): SHA256 hash-based unique identifier
  • question (string): Natural language question
  • answer (string): Ground truth answer
  • corpus_size (int): Number of protocols in corpus (13/129/1291)

Evaluation Fields:

  • possible_answers (list[string]): Valid answer options (null for open-ended)
  • sql_response (list[dict]): SQL query results supporting the answer
  • evidence_size (int): Number of evidence records needed

Metadata Fields:

  • question_type (string): Question category
    • Cross-Comparison
    • Evidence Synthesis
    • Multi-Hop Reasoning
    • Subset Reasoning
  • qa_template (string): Template name used for generation
  • sql_query (string): SQL query for reproducibility

Data Splits

Split Corpus Size # Questions Description
tier_a 13 protocols ~1,500 Basic retrieval
tier_b 129 protocols ~1,700 Advanced retrieval/memory
tier_c 1,291 protocols ~1,700 Large-scale corpus

Usage

Load Dataset

from datasets import load_dataset

# Load specific tier
tier_b = load_dataset("Parexel/clinical-trials-qa", split="tier_b")

# Load all tiers
dataset = load_dataset("Parexel/clinical-trials-qa")

# Access fields
for item in tier_b:
    print(f"Q: {item['question']}")
    print(f"A: {item['answer']}")
    print(f"Corpus: {item['corpus_size']} protocols")

Filter by Question Type

# Get only evidence synthesis questions
synthesis = tier_b.filter(
    lambda x: x["question_type"] == "Evidence Synthesis"
)

# Get closed-set questions (have possible_answers)
closed_set = tier_b.filter(
    lambda x: x["possible_answers"] is not None
)

Data Collection

Question Generation

Questions were automatically generated using 18 templates across 4 reasoning categories:

Cross-Comparison (6 templates):

  • Comparing properties across trials
  • Percentage calculations
  • Prevalence analysis
  • Temporal comparisons

Evidence Synthesis (6 templates):

  • Ranking most/least common values
  • Frequency analysis
  • Multi-filter aggregation
  • Single-filter queries

Multi-Hop Reasoning (3 templates):

  • Combining date and enum filters
  • Sequential property lookups
  • Complex conditional logic

Subset Reasoning (3 templates):

  • Set intersections
  • Set differences
  • Common elements

Quality Controls

  • Null filtering: Removed NA/NULL/UNKNOWN values
  • Natural formatting: Enum values converted to readable form (e.g., "PHASE3" → "Phase 3")
  • Selectivity filtering: Ensured questions have meaningful answers
  • Duplicate detection: Removed redundant questions
  • Answer validation: Verified answers match evidence

Protocol Sampling

  • Tier A: Random sample of 13 protocols (seed=42)
  • Tier B: Stratified sample of 129 protocols across 9 strata (seed=42)
  • Tier C: Stratified sample of 1,291 protocols across 9 strata (seed=42)

Stratification based on:

  • Study type (Interventional/Observational)
  • Phase (Early/Late/NA)
  • Study status (Recruiting/Completed/Other)

Intended Use

Primary Use Case

Benchmarking Retrieval-Augmented Generation (RAG) systems on clinical trial data.

Evaluation Pipeline:

  1. Load protocol PDFs into your RAG system
  2. Query with questions from dataset
  3. Compare system answers to ground truth
  4. Calculate accuracy/F1 scores

Evaluation Metrics

Closed-set questions (have possible_answers):

  • Exact match accuracy
  • Top-k accuracy

Open-ended questions:

  • F1 score (token overlap)
  • ROUGE scores
  • Semantic similarity

Evidence retrieval:

  • Compare retrieved protocols to nct_ids (available in full schema)
  • Precision/recall of evidence retrieval

Limitations

  1. Synthetic Generation: Questions are template-generated, not human-authored
  2. English Only: All content in English
  3. ClinicalTrials.gov Only: Limited to US-registered trials
  4. Structured Data: Questions derived from structured fields, not free-text
  5. Protocol PDFs: Requires access to protocol PDFs (not included in this dataset)

Accessing Protocol PDFs

Protocol PDFs are available in a separate repository (coming soon):

from huggingface_hub import hf_hub_download

# Download specific protocol
pdf_path = hf_hub_download(
    repo_id="your-org/clinical-trials-protocols",
    filename="tier_b/NCT02059408.pdf",
    repo_type="dataset"
)

Alternatively, download directly from ClinicalTrials.gov using the NCT IDs.

Citation

If you use this dataset in your research, please cite:

@dataset{clinical_trials_qa_2026,
  title={Clinical Trials QA: A Multi-Tier RAG Benchmark},
  author={Parexel},
  year={2026},
  publisher={Hugging Face},
  url={https://huggingface.co/datasets/Parexel/clinical-trials-qa}
}

License

  • QA Pairs: CC BY 4.0 - Free to use with attribution
  • Protocol PDFs: Public domain (ClinicalTrials.gov terms)

Dataset Creators

Created by Parexel.

Generated using automated question templates with quality controls for selectivity, natural phrasing, and answer validation.

Additional Information

Dataset Version

  • Version: 1.0.0
  • Release Date: 2026
  • Schema Version: 1.0

Contact

For questions or issues, please open an issue on the dataset repository.

Acknowledgments

  • ClinicalTrials.gov for providing public access to clinical trial data
  • Hugging Face for dataset hosting infrastructure
Downloads last month
45