Skip to content

Commit

Permalink
Address bugs (#200)
Browse files Browse the repository at this point in the history
* Align insert and select clauses

* Add order by for SQL server

#197

* Update insert_location.sql
  • Loading branch information
burrowse authored Jul 25, 2024
1 parent fae5403 commit 48c33f8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion inst/sql/sql_server/cdm_version/v540/insert_location.sql
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ zip,
location_source_value
)
select
row_number() over () as location_id,
row_number() over (order by city,state,zip) as location_id,
locations.*
from
(select distinct
Expand Down

0 comments on commit 48c33f8

Please sign in to comment.