Skip to content

Commit

Permalink
Fix counting
Browse files Browse the repository at this point in the history
  • Loading branch information
fuzhaoyuan authored and alisman committed Nov 20, 2024
1 parent 3fb1687 commit 36d129e
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -314,7 +314,7 @@
SELECT
entity_stable_id AS stableId,
value,
cast(count(*) AS INTEGER) AS count
cast(count(distinct patient_unique_id) AS INTEGER) AS count
FROM generic_assay_data_derived
<where>
<!-- Table creation in clickhouse.sql has ensured no NA values but extra caution is always appreciated -->
Expand Down

0 comments on commit 36d129e

Please sign in to comment.