Skip to content

Instantly share code, notes, and snippets.

@briankip
Created January 7, 2015 07:30
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save briankip/30b1f4c584d909eeeded to your computer and use it in GitHub Desktop.
Save briankip/30b1f4c584d909eeeded to your computer and use it in GitHub Desktop.
Migration script for the patients table
-- Script to migrate patients data from old-blis to new blis
-- 0 warnings
-- Some records have no calculatable date of birth, I have put the DOB as the timestamp
insert into iblis.patients
(patient_number, name, dob, gender, external_patient_number, created_at)
select patient_id, name,
(case WHEN dob = '0000-00-00'
THEN CONVERT(
date_sub(DATE_FORMAT(ts, '%Y-%m-%d'), INTERVAL age year)
USING latin1 )
WHEN dob IS NULL
THEN partial_dob
ELSE dob
END) as dob,
if(sex = 'M', 0, 1) as sex, surr_id, ts from blis_301.patient
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment