Skip to content

Commit

Permalink
add commas
Browse files Browse the repository at this point in the history
  • Loading branch information
Dert1129 committed Oct 31, 2024
1 parent 1d7a5bd commit ab1c99d
Showing 1 changed file with 5 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -24,11 +24,11 @@ public interface ParticipantClinicalDatasetRepository extends CrudRepository<Par
"pc.hypertension_duration, " +
"pc.on_raas_blockade," +
"pc.race, " +
"p.age_binned " +
"p.sex" +
"p.tissue_source" +
"p.protocol" +
"p.sample_type" +
"p.age_binned, " +
"p.sex," +
"p.tissue_source, " +
"p.protocol," +
"p.sample_type," +
"from participant_clinical pc join participant p on pc.participant_id = p.participant_id where pc.participant_id = :participantId ", nativeQuery = true)
ParticipantClinicalDataset findByParticipantId(@Param("participantId") Integer participantId);

Expand Down

0 comments on commit ab1c99d

Please sign in to comment.