Skip to content

Commit

Permalink
removed double statment in sql
Browse files Browse the repository at this point in the history
  • Loading branch information
azimov committed Jul 15, 2024
1 parent 0c1f526 commit b3e605a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion inst/sql/sql_server/ComputeIncidenceRates.sql
Original file line number Diff line number Diff line change
Expand Up @@ -113,7 +113,7 @@ SELECT denominator.calendar_year,
WHEN numerator.cohort_count IS NOT NULL THEN numerator.cohort_count
ELSE CAST(0 AS INT)
END AS cohort_count,
CAST(person_years AS DOUBLE)
person_years
INTO #rates_summary
FROM #denominator denominator
INNER JOIN @vocabulary_database_schema.concept
Expand Down

0 comments on commit b3e605a

Please sign in to comment.