Skip to content

Commit

Permalink
typo fix
Browse files Browse the repository at this point in the history
  • Loading branch information
Georgetilston committed Mar 15, 2024
1 parent afe66a4 commit 8a3d051
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ GROUP BY p.FK_Patient_Link_ID, p.EventDate;
IF OBJECT_ID('tempdb..#PatientWeight') IS NOT NULL DROP TABLE #PatientWeight;
SELECT
wkg.FK_Patient_Link_ID,
WeightInKilograms = TRY_CONVERT(DECIMAL(10,3),wno.[Value]),
WeightInKilograms = TRY_CONVERT(DECIMAL(10,3),wkg.[Value]),
WeightDate = wkg.DateOfFirstValue
INTO #PatientWeight
FROM #PatientWeightInKilograms wkg
Expand Down

0 comments on commit 8a3d051

Please sign in to comment.