Skip to content

Commit

Permalink
adding comment block
Browse files Browse the repository at this point in the history
  • Loading branch information
thutuva authored Nov 14, 2022
1 parent 3d1f96a commit b4c5556
Showing 1 changed file with 12 additions and 0 deletions.
12 changes: 12 additions & 0 deletions models/transformation/home_health_claim.sql
Original file line number Diff line number Diff line change
@@ -1,3 +1,15 @@
-----------------------------------------------------------------------------------------------------------------
-- Author Thu Xuan Vu
-- Created August 2022
-- Purpose Combine base (header) and line files
-- Notes Claim ID is not unique across claim types. Concatenating original claim ID, claim year,
-- and claim type.
-----------------------------------------------------------------------------------------------------------------
-- Modification History
--
-----------------------------------------------------------------------------------------------------------------


select
/* Claim ID is not unique across claim types. Concatenating original claim ID, claim year, and claim type. */
cast(b.claim_no || date_part(year,date(b.clm_thru_dt,'yyyymmdd')) || b.nch_clm_type_cd as varchar) as claim_id
Expand Down

0 comments on commit b4c5556

Please sign in to comment.