Last active
June 8, 2017 19:39
-
-
Save cavebatsofware/54f70c4079efb4693de146fe4820e70a to your computer and use it in GitHub Desktop.
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 * FROM DocumentsUploadConfig WHERE DocumentType in ('Essay', 'LPN Program Classes') AND sectionid in (select id from supplementalsection where formsubsectionid in (select id from ApplicationFormSubsection where formsectionid in (select id from ApplicationFormSection where formid = @application_form_id))); | |
USE unicas_config; | |
SELECT * FROM DocumentsUploadConfig WHERE DocumentType in ('Essay', 'LPN Program Classes') AND formsubsectionid in ( | |
select id from ApplicationFormSubsection where formsectionid in ( | |
select id from ApplicationFormSection where formid = 6412)); |
SELECT * FROM DocumentsUploadConfig WHERE DocumentType in ('Essay', 'LPN Program Classes') AND sectionid in (select id from programsections where formid = @application_form_id)
use unicas_config;
SELECT * FROM DocumentsUploadConfig WHERE sectionid in (select id from supplementalsection where programid in (select id from programsections where formid = 6412))
select * from DocumentsUploadConfig where SectionId in (select id from SupplementalSection where ProgramId in
(select id from Program where AssociationOrgId in (select id from AssociationOrg where FormId = 6412)))
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
USE unicas_config;
SELECT * FROM DocumentsUploadConfig WHERE DocumentType in ('Essay', 'LPN Program Classes') AND sectionid in (
select id from ApplicationFormSection where formid = 6412);