Last active
December 1, 2017 05:22
-
-
Save jagroop/9142eeb3e130366cd24130f3828de1c9 to your computer and use it in GitHub Desktop.
Query
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
select usr.id as user_id, first_name, last_name, bp.*, risk.* from test_type_verification as test | |
inner join `jbt_testeeUsers` as usr on test.user_id = usr.id | |
left join bp_a1c_risk_ques_2016 as bp on test.user_id = bp.user_id | |
left join risk_Assessment_questions_2016 as risk on test.user_id = risk.user_id | |
where usr.id = 133 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment