Output
stringlengths
25
230
Context
stringclasses
1 value
Input
stringlengths
20
214
SELECT APPLN_ID FROM HIX.T_ENRT WHERE DENRT_RSN_CD = 3207 AND SKIP_SHOP_IN = 'N';
HIX contains tables such as T_ENRT, T_PRSN_ENRT, T_PRSN_MBRSH. Table T_ENRT contains columns like ENRT_ID, PLAN_ENRT_DT, ENRT_STATUS_CD, PLAN_DENRT_DT, DENRT_RSN_CD, CRTD_DT, CRTD_BY_NB, UPDTD_DT, UPDTD_BY_NB, VERS_NB, PLAN_ENRT_PREM_AM, EFFV_START_DT, EFFV_END_DT, DSPL_PLAN_ID, ENRT_TYPE_CD, ADJSTD_MAX_APTC_AM, APPLN_...
Show me the application IDs for users with Coverage Ended initiated by Assister and Skip Shopping Indicator is 'N'.
SELECT ENRT_ID FROM HIX.T_ENRT WHERE DENRT_RSN_CD = 8341 AND SPLIT_ENRT_IND IS NOT NULL;
HIX contains tables such as T_ENRT, T_PRSN_ENRT, T_PRSN_MBRSH. Table T_ENRT contains columns like ENRT_ID, PLAN_ENRT_DT, ENRT_STATUS_CD, PLAN_DENRT_DT, DENRT_RSN_CD, CRTD_DT, CRTD_BY_NB, UPDTD_DT, UPDTD_BY_NB, VERS_NB, PLAN_ENRT_PREM_AM, EFFV_START_DT, EFFV_END_DT, DSPL_PLAN_ID, ENRT_TYPE_CD, ADJSTD_MAX_APTC_AM, APPLN_...
Get the enrollment IDs for users with Verify Lawful Presence initiated and Split Enrollment Indicator is not null.
SELECT ENRT_ID FROM HIX.T_ENRT WHERE ENRT_TYPE_CD = 9855 AND CARR_EFFCTN_END_DT > '2023-12-08';
HIX contains tables such as T_ENRT, T_PRSN_ENRT, T_PRSN_MBRSH. Table T_ENRT contains columns like ENRT_ID, PLAN_ENRT_DT, ENRT_STATUS_CD, PLAN_DENRT_DT, DENRT_RSN_CD, CRTD_DT, CRTD_BY_NB, UPDTD_DT, UPDTD_BY_NB, VERS_NB, PLAN_ENRT_PREM_AM, EFFV_START_DT, EFFV_END_DT, DSPL_PLAN_ID, ENRT_TYPE_CD, ADJSTD_MAX_APTC_AM, APPLN_...
Retrieve the enrollment IDs for users enrolled in Dental Plans with Carriers Effected End Date after '2023-12-08'.
SELECT APPLN_ID FROM HIX.T_ENRT WHERE DENRT_RSN_CD = 9703 AND EFFV_END_DT IS NULL;
HIX contains tables such as T_ENRT, T_PRSN_ENRT, T_PRSN_MBRSH. Table T_ENRT contains columns like ENRT_ID, PLAN_ENRT_DT, ENRT_STATUS_CD, PLAN_DENRT_DT, DENRT_RSN_CD, CRTD_DT, CRTD_BY_NB, UPDTD_DT, UPDTD_BY_NB, VERS_NB, PLAN_ENRT_PREM_AM, EFFV_START_DT, EFFV_END_DT, DSPL_PLAN_ID, ENRT_TYPE_CD, ADJSTD_MAX_APTC_AM, APPLN_...
Show me the application IDs for users with Ageout Redetermination initiated and Effected End Date is null.
SELECT ENRT_ID FROM HIX.T_ENRT WHERE ENRT_STATUS_CD = 430 AND ADJSTD_MAX_APTC_AM <= 1900;
HIX contains tables such as T_ENRT, T_PRSN_ENRT, T_PRSN_MBRSH. Table T_ENRT contains columns like ENRT_ID, PLAN_ENRT_DT, ENRT_STATUS_CD, PLAN_DENRT_DT, DENRT_RSN_CD, CRTD_DT, CRTD_BY_NB, UPDTD_DT, UPDTD_BY_NB, VERS_NB, PLAN_ENRT_PREM_AM, EFFV_START_DT, EFFV_END_DT, DSPL_PLAN_ID, ENRT_TYPE_CD, ADJSTD_MAX_APTC_AM, APPLN_...
Get the enrollment IDs for users with Open Enrollments and Adjusted Maximum APTC Amount less than or equal to 1900.
SELECT ENRT_ID FROM HIX.T_ENRT WHERE CARR_MSG_STATUS_ID = 3239 AND PREM_PAID_DT IS NULL;
HIX contains tables such as T_ENRT, T_PRSN_ENRT, T_PRSN_MBRSH. Table T_ENRT contains columns like ENRT_ID, PLAN_ENRT_DT, ENRT_STATUS_CD, PLAN_DENRT_DT, DENRT_RSN_CD, CRTD_DT, CRTD_BY_NB, UPDTD_DT, UPDTD_BY_NB, VERS_NB, PLAN_ENRT_PREM_AM, EFFV_START_DT, EFFV_END_DT, DSPL_PLAN_ID, ENRT_TYPE_CD, ADJSTD_MAX_APTC_AM, APPLN_...
Retrieve the enrollment IDs for users with Transmitted to Carriers status and Premium Paid Date is null.
SELECT APPLN_ID FROM HIX.T_ENRT WHERE PLAN_ENRT_DT >= '2023-12-08';
HIX contains tables such as T_ENRT, T_PRSN_ENRT, T_PRSN_MBRSH. Table T_ENRT contains columns like ENRT_ID, PLAN_ENRT_DT, ENRT_STATUS_CD, PLAN_DENRT_DT, DENRT_RSN_CD, CRTD_DT, CRTD_BY_NB, UPDTD_DT, UPDTD_BY_NB, VERS_NB, PLAN_ENRT_PREM_AM, EFFV_START_DT, EFFV_END_DT, DSPL_PLAN_ID, ENRT_TYPE_CD, ADJSTD_MAX_APTC_AM, APPLN_...
Show me the application IDs for users who have enrolled in any plan on or after '2023-12-08'.
SELECT ENRT_ID FROM HIX.T_ENRT WHERE DENRT_RSN_CD = 9703 AND EFFV_END_DT IS NOT NULL;
HIX contains tables such as T_ENRT, T_PRSN_ENRT, T_PRSN_MBRSH. Table T_ENRT contains columns like ENRT_ID, PLAN_ENRT_DT, ENRT_STATUS_CD, PLAN_DENRT_DT, DENRT_RSN_CD, CRTD_DT, CRTD_BY_NB, UPDTD_DT, UPDTD_BY_NB, VERS_NB, PLAN_ENRT_PREM_AM, EFFV_START_DT, EFFV_END_DT, DSPL_PLAN_ID, ENRT_TYPE_CD, ADJSTD_MAX_APTC_AM, APPLN_...
Retrieve the enrollment IDs for users with Ageout Redetermination initiated and Effected End Date is not null.
SELECT APPLN_ID FROM HIX.T_ENRT WHERE ENRT_STATUS_CD = 430 AND ADJSTD_MAX_APTC_AM <= 2100;
HIX contains tables such as T_ENRT, T_PRSN_ENRT, T_PRSN_MBRSH. Table T_ENRT contains columns like ENRT_ID, PLAN_ENRT_DT, ENRT_STATUS_CD, PLAN_DENRT_DT, DENRT_RSN_CD, CRTD_DT, CRTD_BY_NB, UPDTD_DT, UPDTD_BY_NB, VERS_NB, PLAN_ENRT_PREM_AM, EFFV_START_DT, EFFV_END_DT, DSPL_PLAN_ID, ENRT_TYPE_CD, ADJSTD_MAX_APTC_AM, APPLN_...
Show me the application IDs for users with Open Enrollments and Adjusted Maximum APTC Amount less than or equal to 2100.
SELECT ENRT_ID FROM HIX.T_ENRT WHERE ENRT_FLOW_IN = 8279 AND MAX_APTC_AM < 1100;
HIX contains tables such as T_ENRT, T_PRSN_ENRT, T_PRSN_MBRSH. Table T_ENRT contains columns like ENRT_ID, PLAN_ENRT_DT, ENRT_STATUS_CD, PLAN_DENRT_DT, DENRT_RSN_CD, CRTD_DT, CRTD_BY_NB, UPDTD_DT, UPDTD_BY_NB, VERS_NB, PLAN_ENRT_PREM_AM, EFFV_START_DT, EFFV_END_DT, DSPL_PLAN_ID, ENRT_TYPE_CD, ADJSTD_MAX_APTC_AM, APPLN_...
Get the enrollment IDs for users with VLP Enrollment and Maximum APTC Amount less than 1100.
SELECT ENRT_ID FROM HIX.T_ENRT WHERE DENRT_RSN_CD = 8341 AND DENRT_ENRT_FLOW_CD IS NOT NULL;
HIX contains tables such as T_ENRT, T_PRSN_ENRT, T_PRSN_MBRSH. Table T_ENRT contains columns like ENRT_ID, PLAN_ENRT_DT, ENRT_STATUS_CD, PLAN_DENRT_DT, DENRT_RSN_CD, CRTD_DT, CRTD_BY_NB, UPDTD_DT, UPDTD_BY_NB, VERS_NB, PLAN_ENRT_PREM_AM, EFFV_START_DT, EFFV_END_DT, DSPL_PLAN_ID, ENRT_TYPE_CD, ADJSTD_MAX_APTC_AM, APPLN_...
Retrieve the enrollment IDs for users with Verify Lawful Presence initiated and Denert Enrollment Flow Code is not null.
SELECT APPLN_ID FROM HIX.T_ENRT WHERE ENRT_IND_CD = 1928 AND DENRT_APPLN_ID IS NULL;
HIX contains tables such as T_ENRT, T_PRSN_ENRT, T_PRSN_MBRSH. Table T_ENRT contains columns like ENRT_ID, PLAN_ENRT_DT, ENRT_STATUS_CD, PLAN_DENRT_DT, DENRT_RSN_CD, CRTD_DT, CRTD_BY_NB, UPDTD_DT, UPDTD_BY_NB, VERS_NB, PLAN_ENRT_PREM_AM, EFFV_START_DT, EFFV_END_DT, DSPL_PLAN_ID, ENRT_TYPE_CD, ADJSTD_MAX_APTC_AM, APPLN_...
Show me the application IDs for users with Special Enrollments and Denert Application ID is null.
SELECT ENRT_ID FROM HIX.T_ENRT WHERE DENRT_RSN_CD = 3245 AND PREM_PAID_DT IS NULL;
HIX contains tables such as T_ENRT, T_PRSN_ENRT, T_PRSN_MBRSH. Table T_ENRT contains columns like ENRT_ID, PLAN_ENRT_DT, ENRT_STATUS_CD, PLAN_DENRT_DT, DENRT_RSN_CD, CRTD_DT, CRTD_BY_NB, UPDTD_DT, UPDTD_BY_NB, VERS_NB, PLAN_ENRT_PREM_AM, EFFV_START_DT, EFFV_END_DT, DSPL_PLAN_ID, ENRT_TYPE_CD, ADJSTD_MAX_APTC_AM, APPLN_...
Get the enrollment IDs for users with Change Reported as the disenrollment reason and Premium Paid Date is null.
SELECT ENRT_ID FROM HIX.T_ENRT WHERE CR_MAX_APTC_AM > 700;
HIX contains tables such as T_ENRT, T_PRSN_ENRT, T_PRSN_MBRSH. Table T_ENRT contains columns like ENRT_ID, PLAN_ENRT_DT, ENRT_STATUS_CD, PLAN_DENRT_DT, DENRT_RSN_CD, CRTD_DT, CRTD_BY_NB, UPDTD_DT, UPDTD_BY_NB, VERS_NB, PLAN_ENRT_PREM_AM, EFFV_START_DT, EFFV_END_DT, DSPL_PLAN_ID, ENRT_TYPE_CD, ADJSTD_MAX_APTC_AM, APPLN_...
Retrieve the enrollment IDs for users enrolled in any plan with CR Maximum APTC Amount greater than 700.
SELECT APPLN_ID FROM HIX.T_ENRT WHERE PLAN_ENRT_DT >= '2023-11-30';
HIX contains tables such as T_ENRT, T_PRSN_ENRT, T_PRSN_MBRSH. Table T_ENRT contains columns like ENRT_ID, PLAN_ENRT_DT, ENRT_STATUS_CD, PLAN_DENRT_DT, DENRT_RSN_CD, CRTD_DT, CRTD_BY_NB, UPDTD_DT, UPDTD_BY_NB, VERS_NB, PLAN_ENRT_PREM_AM, EFFV_START_DT, EFFV_END_DT, DSPL_PLAN_ID, ENRT_TYPE_CD, ADJSTD_MAX_APTC_AM, APPLN_...
Show me the application IDs for users who have enrolled in any plan on or after '2023-11-30'.
SELECT ENRT_ID FROM HIX.T_ENRT WHERE ENRT_FLOW_IN = 8612 AND ENRT_LOGICAL_ID IS NOT NULL;
HIX contains tables such as T_ENRT, T_PRSN_ENRT, T_PRSN_MBRSH. Table T_ENRT contains columns like ENRT_ID, PLAN_ENRT_DT, ENRT_STATUS_CD, PLAN_DENRT_DT, DENRT_RSN_CD, CRTD_DT, CRTD_BY_NB, UPDTD_DT, UPDTD_BY_NB, VERS_NB, PLAN_ENRT_PREM_AM, EFFV_START_DT, EFFV_END_DT, DSPL_PLAN_ID, ENRT_TYPE_CD, ADJSTD_MAX_APTC_AM, APPLN_...
Retrieve the enrollment IDs for users with Partial Disenrollment initiated by User and Enrt Logical ID is not null.
SELECT APPLN_ID FROM HIX.T_ENRT WHERE ENRT_IND_CD = 1927 AND MAX_APTC_AM >= 3500;
HIX contains tables such as T_ENRT, T_PRSN_ENRT, T_PRSN_MBRSH. Table T_ENRT contains columns like ENRT_ID, PLAN_ENRT_DT, ENRT_STATUS_CD, PLAN_DENRT_DT, DENRT_RSN_CD, CRTD_DT, CRTD_BY_NB, UPDTD_DT, UPDTD_BY_NB, VERS_NB, PLAN_ENRT_PREM_AM, EFFV_START_DT, EFFV_END_DT, DSPL_PLAN_ID, ENRT_TYPE_CD, ADJSTD_MAX_APTC_AM, APPLN_...
Show me the application IDs for users with Open Enrollments and Max APTC Amount greater than or equal to 3500.
SELECT ENRT_ID FROM HIX.T_ENRT WHERE DENRT_RSN_CD = 6572 AND PLAN_ENRT_AFTER_APTC_AM IS NOT NULL;
HIX contains tables such as T_ENRT, T_PRSN_ENRT, T_PRSN_MBRSH. Table T_ENRT contains columns like ENRT_ID, PLAN_ENRT_DT, ENRT_STATUS_CD, PLAN_DENRT_DT, DENRT_RSN_CD, CRTD_DT, CRTD_BY_NB, UPDTD_DT, UPDTD_BY_NB, VERS_NB, PLAN_ENRT_PREM_AM, EFFV_START_DT, EFFV_END_DT, DSPL_PLAN_ID, ENRT_TYPE_CD, ADJSTD_MAX_APTC_AM, APPLN_...
Get the enrollment IDs for users with CHIP Disenrollment Batch initiated by User and Plan Enrt After APTC Amount is not null.
SELECT ENRT_ID FROM HIX.T_ENRT WHERE ENRT_TYPE_CD = 9855 AND CARR_EFFCTN_END_DT < '2023-12-15';
HIX contains tables such as T_ENRT, T_PRSN_ENRT, T_PRSN_MBRSH. Table T_ENRT contains columns like ENRT_ID, PLAN_ENRT_DT, ENRT_STATUS_CD, PLAN_DENRT_DT, DENRT_RSN_CD, CRTD_DT, CRTD_BY_NB, UPDTD_DT, UPDTD_BY_NB, VERS_NB, PLAN_ENRT_PREM_AM, EFFV_START_DT, EFFV_END_DT, DSPL_PLAN_ID, ENRT_TYPE_CD, ADJSTD_MAX_APTC_AM, APPLN_...
Retrieve the enrollment IDs for users enrolled in Dental Plans with Carriers Effected End Date before '2023-12-15'.
SELECT APPLN_ID FROM HIX.T_ENRT WHERE DENRT_RSN_CD = 3207 AND SKIP_SHOP_IN = 'Y';
HIX contains tables such as T_ENRT, T_PRSN_ENRT, T_PRSN_MBRSH. Table T_ENRT contains columns like ENRT_ID, PLAN_ENRT_DT, ENRT_STATUS_CD, PLAN_DENRT_DT, DENRT_RSN_CD, CRTD_DT, CRTD_BY_NB, UPDTD_DT, UPDTD_BY_NB, VERS_NB, PLAN_ENRT_PREM_AM, EFFV_START_DT, EFFV_END_DT, DSPL_PLAN_ID, ENRT_TYPE_CD, ADJSTD_MAX_APTC_AM, APPLN_...
Show me the application IDs for users with Coverage Ended initiated by Assister and Skip Shopping Indicator is 'Y'.
SELECT ENRT_ID FROM HIX.T_ENRT WHERE DENRT_RSN_CD = 8341 AND SPLIT_ENRT_IND IS NOT NULL;
HIX contains tables such as T_ENRT, T_PRSN_ENRT, T_PRSN_MBRSH. Table T_ENRT contains columns like ENRT_ID, PLAN_ENRT_DT, ENRT_STATUS_CD, PLAN_DENRT_DT, DENRT_RSN_CD, CRTD_DT, CRTD_BY_NB, UPDTD_DT, UPDTD_BY_NB, VERS_NB, PLAN_ENRT_PREM_AM, EFFV_START_DT, EFFV_END_DT, DSPL_PLAN_ID, ENRT_TYPE_CD, ADJSTD_MAX_APTC_AM, APPLN_...
Get the enrollment IDs for users with Verify Lawful Presence initiated and Split Enrollment Indicator is not null.
SELECT ENRT_ID FROM HIX.T_ENRT WHERE ENRT_TYPE_CD = 9855 AND CARR_EFFCTN_END_DT > '2023-12-05';
HIX contains tables such as T_ENRT, T_PRSN_ENRT, T_PRSN_MBRSH. Table T_ENRT contains columns like ENRT_ID, PLAN_ENRT_DT, ENRT_STATUS_CD, PLAN_DENRT_DT, DENRT_RSN_CD, CRTD_DT, CRTD_BY_NB, UPDTD_DT, UPDTD_BY_NB, VERS_NB, PLAN_ENRT_PREM_AM, EFFV_START_DT, EFFV_END_DT, DSPL_PLAN_ID, ENRT_TYPE_CD, ADJSTD_MAX_APTC_AM, APPLN_...
Retrieve the enrollment IDs for users enrolled in Dental Plans with Carriers Effected End Date after '2023-12-05'.
SELECT APPLN_ID FROM HIX.T_ENRT WHERE DENRT_RSN_CD = 9703 AND EFFV_END_DT IS NULL;
HIX contains tables such as T_ENRT, T_PRSN_ENRT, T_PRSN_MBRSH. Table T_ENRT contains columns like ENRT_ID, PLAN_ENRT_DT, ENRT_STATUS_CD, PLAN_DENRT_DT, DENRT_RSN_CD, CRTD_DT, CRTD_BY_NB, UPDTD_DT, UPDTD_BY_NB, VERS_NB, PLAN_ENRT_PREM_AM, EFFV_START_DT, EFFV_END_DT, DSPL_PLAN_ID, ENRT_TYPE_CD, ADJSTD_MAX_APTC_AM, APPLN_...
Show me the application IDs for users with Ageout Redetermination initiated and Effected End Date is null.
SELECT ENRT_ID FROM HIX.T_ENRT WHERE ENRT_STATUS_CD = 430 AND ADJSTD_MAX_APTC_AM <= 2000;
HIX contains tables such as T_ENRT, T_PRSN_ENRT, T_PRSN_MBRSH. Table T_ENRT contains columns like ENRT_ID, PLAN_ENRT_DT, ENRT_STATUS_CD, PLAN_DENRT_DT, DENRT_RSN_CD, CRTD_DT, CRTD_BY_NB, UPDTD_DT, UPDTD_BY_NB, VERS_NB, PLAN_ENRT_PREM_AM, EFFV_START_DT, EFFV_END_DT, DSPL_PLAN_ID, ENRT_TYPE_CD, ADJSTD_MAX_APTC_AM, APPLN_...
Get the enrollment IDs for users with Open Enrollments and Adjusted Maximum APTC Amount less than or equal to 2000.
SELECT ENRT_ID FROM HIX.T_ENRT WHERE CARR_MSG_STATUS_ID = 3239 AND PREM_PAID_DT IS NULL;
HIX contains tables such as T_ENRT, T_PRSN_ENRT, T_PRSN_MBRSH. Table T_ENRT contains columns like ENRT_ID, PLAN_ENRT_DT, ENRT_STATUS_CD, PLAN_DENRT_DT, DENRT_RSN_CD, CRTD_DT, CRTD_BY_NB, UPDTD_DT, UPDTD_BY_NB, VERS_NB, PLAN_ENRT_PREM_AM, EFFV_START_DT, EFFV_END_DT, DSPL_PLAN_ID, ENRT_TYPE_CD, ADJSTD_MAX_APTC_AM, APPLN_...
Retrieve the enrollment IDs for users with Transmitted to Carriers status and Premium Paid Date is null.
SELECT APPLN_ID FROM HIX.T_ENRT WHERE PLAN_ENRT_DT >= '2023-12-05';
HIX contains tables such as T_ENRT, T_PRSN_ENRT, T_PRSN_MBRSH. Table T_ENRT contains columns like ENRT_ID, PLAN_ENRT_DT, ENRT_STATUS_CD, PLAN_DENRT_DT, DENRT_RSN_CD, CRTD_DT, CRTD_BY_NB, UPDTD_DT, UPDTD_BY_NB, VERS_NB, PLAN_ENRT_PREM_AM, EFFV_START_DT, EFFV_END_DT, DSPL_PLAN_ID, ENRT_TYPE_CD, ADJSTD_MAX_APTC_AM, APPLN_...
Show me the application IDs for users who have enrolled in any plan on or after '2023-12-05'.
SELECT ENRT_ID FROM HIX.T_ENRT WHERE DENRT_RSN_CD = 9703 AND EFFV_END_DT IS NOT NULL;
HIX contains tables such as T_ENRT, T_PRSN_ENRT, T_PRSN_MBRSH. Table T_ENRT contains columns like ENRT_ID, PLAN_ENRT_DT, ENRT_STATUS_CD, PLAN_DENRT_DT, DENRT_RSN_CD, CRTD_DT, CRTD_BY_NB, UPDTD_DT, UPDTD_BY_NB, VERS_NB, PLAN_ENRT_PREM_AM, EFFV_START_DT, EFFV_END_DT, DSPL_PLAN_ID, ENRT_TYPE_CD, ADJSTD_MAX_APTC_AM, APPLN_...
Retrieve the enrollment IDs for users with Ageout Redetermination initiated and Effected End Date is not null.
SELECT APPLN_ID FROM HIX.T_ENRT WHERE ENRT_STATUS_CD = 430 AND ADJSTD_MAX_APTC_AM <= 2200;
HIX contains tables such as T_ENRT, T_PRSN_ENRT, T_PRSN_MBRSH. Table T_ENRT contains columns like ENRT_ID, PLAN_ENRT_DT, ENRT_STATUS_CD, PLAN_DENRT_DT, DENRT_RSN_CD, CRTD_DT, CRTD_BY_NB, UPDTD_DT, UPDTD_BY_NB, VERS_NB, PLAN_ENRT_PREM_AM, EFFV_START_DT, EFFV_END_DT, DSPL_PLAN_ID, ENRT_TYPE_CD, ADJSTD_MAX_APTC_AM, APPLN_...
Show me the application IDs for users with Open Enrollments and Adjusted Maximum APTC Amount less than or equal to 2200.
SELECT ENRT_ID FROM HIX.T_ENRT WHERE ENRT_FLOW_IN = 8279 AND MAX_APTC_AM < 1200;
HIX contains tables such as T_ENRT, T_PRSN_ENRT, T_PRSN_MBRSH. Table T_ENRT contains columns like ENRT_ID, PLAN_ENRT_DT, ENRT_STATUS_CD, PLAN_DENRT_DT, DENRT_RSN_CD, CRTD_DT, CRTD_BY_NB, UPDTD_DT, UPDTD_BY_NB, VERS_NB, PLAN_ENRT_PREM_AM, EFFV_START_DT, EFFV_END_DT, DSPL_PLAN_ID, ENRT_TYPE_CD, ADJSTD_MAX_APTC_AM, APPLN_...
Get the enrollment IDs for users with VLP Enrollment and Maximum APTC Amount less than 1200.
SELECT ENRT_ID FROM HIX.T_ENRT WHERE ENRT_TYPE_CD = 9855 AND CARR_EFFCTN_END_DT < '2023-12-15';
HIX contains tables such as T_ENRT, T_PRSN_ENRT, T_PRSN_MBRSH. Table T_ENRT contains columns like ENRT_ID, PLAN_ENRT_DT, ENRT_STATUS_CD, PLAN_DENRT_DT, DENRT_RSN_CD, CRTD_DT, CRTD_BY_NB, UPDTD_DT, UPDTD_BY_NB, VERS_NB, PLAN_ENRT_PREM_AM, EFFV_START_DT, EFFV_END_DT, DSPL_PLAN_ID, ENRT_TYPE_CD, ADJSTD_MAX_APTC_AM, APPLN_...
Retrieve the enrollment IDs for users enrolled in Dental Plans with Carriers Effected End Date before '2023-12-15'.
SELECT APPLN_ID FROM HIX.T_ENRT WHERE DENRT_RSN_CD = 3207 AND SKIP_SHOP_IN = 'Y';
HIX contains tables such as T_ENRT, T_PRSN_ENRT, T_PRSN_MBRSH. Table T_ENRT contains columns like ENRT_ID, PLAN_ENRT_DT, ENRT_STATUS_CD, PLAN_DENRT_DT, DENRT_RSN_CD, CRTD_DT, CRTD_BY_NB, UPDTD_DT, UPDTD_BY_NB, VERS_NB, PLAN_ENRT_PREM_AM, EFFV_START_DT, EFFV_END_DT, DSPL_PLAN_ID, ENRT_TYPE_CD, ADJSTD_MAX_APTC_AM, APPLN_...
Show me the application IDs for users with Coverage Ended initiated by Assister and Skip Shopping Indicator is 'Y'.
SELECT ENRT_ID FROM HIX.T_ENRT WHERE DENRT_RSN_CD = 8341 AND SPLIT_ENRT_IND IS NOT NULL;
HIX contains tables such as T_ENRT, T_PRSN_ENRT, T_PRSN_MBRSH. Table T_ENRT contains columns like ENRT_ID, PLAN_ENRT_DT, ENRT_STATUS_CD, PLAN_DENRT_DT, DENRT_RSN_CD, CRTD_DT, CRTD_BY_NB, UPDTD_DT, UPDTD_BY_NB, VERS_NB, PLAN_ENRT_PREM_AM, EFFV_START_DT, EFFV_END_DT, DSPL_PLAN_ID, ENRT_TYPE_CD, ADJSTD_MAX_APTC_AM, APPLN_...
Get the enrollment IDs for users with Verify Lawful Presence initiated and Split Enrollment Indicator is not null.
SELECT ENRT_ID FROM HIX.T_ENRT WHERE ENRT_TYPE_CD = 9855 AND CARR_EFFCTN_END_DT > '2023-12-05';
HIX contains tables such as T_ENRT, T_PRSN_ENRT, T_PRSN_MBRSH. Table T_ENRT contains columns like ENRT_ID, PLAN_ENRT_DT, ENRT_STATUS_CD, PLAN_DENRT_DT, DENRT_RSN_CD, CRTD_DT, CRTD_BY_NB, UPDTD_DT, UPDTD_BY_NB, VERS_NB, PLAN_ENRT_PREM_AM, EFFV_START_DT, EFFV_END_DT, DSPL_PLAN_ID, ENRT_TYPE_CD, ADJSTD_MAX_APTC_AM, APPLN_...
Retrieve the enrollment IDs for users enrolled in Dental Plans with Carriers Effected End Date after '2023-12-05'.
SELECT APPLN_ID FROM HIX.T_ENRT WHERE DENRT_RSN_CD = 9703 AND EFFV_END_DT IS NULL;
HIX contains tables such as T_ENRT, T_PRSN_ENRT, T_PRSN_MBRSH. Table T_ENRT contains columns like ENRT_ID, PLAN_ENRT_DT, ENRT_STATUS_CD, PLAN_DENRT_DT, DENRT_RSN_CD, CRTD_DT, CRTD_BY_NB, UPDTD_DT, UPDTD_BY_NB, VERS_NB, PLAN_ENRT_PREM_AM, EFFV_START_DT, EFFV_END_DT, DSPL_PLAN_ID, ENRT_TYPE_CD, ADJSTD_MAX_APTC_AM, APPLN_...
Show me the application IDs for users with Ageout Redetermination initiated and Effected End Date is null.
SELECT ENRT_ID FROM HIX.T_ENRT WHERE ENRT_STATUS_CD = 430 AND ADJSTD_MAX_APTC_AM <= 2000;
HIX contains tables such as T_ENRT, T_PRSN_ENRT, T_PRSN_MBRSH. Table T_ENRT contains columns like ENRT_ID, PLAN_ENRT_DT, ENRT_STATUS_CD, PLAN_DENRT_DT, DENRT_RSN_CD, CRTD_DT, CRTD_BY_NB, UPDTD_DT, UPDTD_BY_NB, VERS_NB, PLAN_ENRT_PREM_AM, EFFV_START_DT, EFFV_END_DT, DSPL_PLAN_ID, ENRT_TYPE_CD, ADJSTD_MAX_APTC_AM, APPLN_...
Get the enrollment IDs for users with Open Enrollments and Adjusted Maximum APTC Amount less than or equal to 2000.
SELECT ENRT_ID FROM HIX.T_ENRT WHERE CARR_MSG_STATUS_ID = 3239 AND PREM_PAID_DT IS NULL;
HIX contains tables such as T_ENRT, T_PRSN_ENRT, T_PRSN_MBRSH. Table T_ENRT contains columns like ENRT_ID, PLAN_ENRT_DT, ENRT_STATUS_CD, PLAN_DENRT_DT, DENRT_RSN_CD, CRTD_DT, CRTD_BY_NB, UPDTD_DT, UPDTD_BY_NB, VERS_NB, PLAN_ENRT_PREM_AM, EFFV_START_DT, EFFV_END_DT, DSPL_PLAN_ID, ENRT_TYPE_CD, ADJSTD_MAX_APTC_AM, APPLN_...
Retrieve the enrollment IDs for users with Transmitted to Carriers status and Premium Paid Date is null.
SELECT APPLN_ID FROM HIX.T_ENRT WHERE PLAN_ENRT_DT >= '2023-12-05';
HIX contains tables such as T_ENRT, T_PRSN_ENRT, T_PRSN_MBRSH. Table T_ENRT contains columns like ENRT_ID, PLAN_ENRT_DT, ENRT_STATUS_CD, PLAN_DENRT_DT, DENRT_RSN_CD, CRTD_DT, CRTD_BY_NB, UPDTD_DT, UPDTD_BY_NB, VERS_NB, PLAN_ENRT_PREM_AM, EFFV_START_DT, EFFV_END_DT, DSPL_PLAN_ID, ENRT_TYPE_CD, ADJSTD_MAX_APTC_AM, APPLN_...
Show me the application IDs for users who have enrolled in any plan on or after '2023-12-05'.
SELECT ENRT_ID FROM HIX.T_ENRT WHERE DENRT_RSN_CD = 9703 AND EFFV_END_DT IS NOT NULL;
HIX contains tables such as T_ENRT, T_PRSN_ENRT, T_PRSN_MBRSH. Table T_ENRT contains columns like ENRT_ID, PLAN_ENRT_DT, ENRT_STATUS_CD, PLAN_DENRT_DT, DENRT_RSN_CD, CRTD_DT, CRTD_BY_NB, UPDTD_DT, UPDTD_BY_NB, VERS_NB, PLAN_ENRT_PREM_AM, EFFV_START_DT, EFFV_END_DT, DSPL_PLAN_ID, ENRT_TYPE_CD, ADJSTD_MAX_APTC_AM, APPLN_...
Retrieve the enrollment IDs for users with Ageout Redetermination initiated and Effected End Date is not null.
SELECT APPLN_ID FROM HIX.T_ENRT WHERE ENRT_STATUS_CD = 430 AND ADJSTD_MAX_APTC_AM <= 2200;
HIX contains tables such as T_ENRT, T_PRSN_ENRT, T_PRSN_MBRSH. Table T_ENRT contains columns like ENRT_ID, PLAN_ENRT_DT, ENRT_STATUS_CD, PLAN_DENRT_DT, DENRT_RSN_CD, CRTD_DT, CRTD_BY_NB, UPDTD_DT, UPDTD_BY_NB, VERS_NB, PLAN_ENRT_PREM_AM, EFFV_START_DT, EFFV_END_DT, DSPL_PLAN_ID, ENRT_TYPE_CD, ADJSTD_MAX_APTC_AM, APPLN_...
Show me the application IDs for users with Open Enrollments and Adjusted Maximum APTC Amount less than or equal to 2200.
SELECT ENRT_ID FROM HIX.T_ENRT WHERE ENRT_FLOW_IN = 8279 AND MAX_APTC_AM < 1200;
HIX contains tables such as T_ENRT, T_PRSN_ENRT, T_PRSN_MBRSH. Table T_ENRT contains columns like ENRT_ID, PLAN_ENRT_DT, ENRT_STATUS_CD, PLAN_DENRT_DT, DENRT_RSN_CD, CRTD_DT, CRTD_BY_NB, UPDTD_DT, UPDTD_BY_NB, VERS_NB, PLAN_ENRT_PREM_AM, EFFV_START_DT, EFFV_END_DT, DSPL_PLAN_ID, ENRT_TYPE_CD, ADJSTD_MAX_APTC_AM, APPLN_...
Get the enrollment IDs for users with VLP Enrollment and Maximum APTC Amount less than 1200.
SELECT ENRT_ID FROM HIX.T_ENRT WHERE DENRT_RSN_CD = 6572 AND PLAN_DENRT_DT IS NOT NULL;
HIX contains tables such as T_ENRT, T_PRSN_ENRT, T_PRSN_MBRSH. Table T_ENRT contains columns like ENRT_ID, PLAN_ENRT_DT, ENRT_STATUS_CD, PLAN_DENRT_DT, DENRT_RSN_CD, CRTD_DT, CRTD_BY_NB, UPDTD_DT, UPDTD_BY_NB, VERS_NB, PLAN_ENRT_PREM_AM, EFFV_START_DT, EFFV_END_DT, DSPL_PLAN_ID, ENRT_TYPE_CD, ADJSTD_MAX_APTC_AM, APPLN_...
Retrieve the enrollment IDs for users with CHIP Disenrollment Batch initiated by User and Plan Denert Date is not null.
SELECT APPLN_ID FROM HIX.T_ENRT WHERE APTC_REDETRMN IS NOT NULL AND CAC_ASSIST_ID IS NOT NULL;
HIX contains tables such as T_ENRT, T_PRSN_ENRT, T_PRSN_MBRSH. Table T_ENRT contains columns like ENRT_ID, PLAN_ENRT_DT, ENRT_STATUS_CD, PLAN_DENRT_DT, DENRT_RSN_CD, CRTD_DT, CRTD_BY_NB, UPDTD_DT, UPDTD_BY_NB, VERS_NB, PLAN_ENRT_PREM_AM, EFFV_START_DT, EFFV_END_DT, DSPL_PLAN_ID, ENRT_TYPE_CD, ADJSTD_MAX_APTC_AM, APPLN_...
Show me the application IDs for users with APTC Redetermination and CAC Assister ID is not null.
SELECT ENRT_ID FROM HIX.T_ENRT WHERE ENRT_STATUS_CD = 428 AND PREM_PAID_DT IS NOT NULL;
HIX contains tables such as T_ENRT, T_PRSN_ENRT, T_PRSN_MBRSH. Table T_ENRT contains columns like ENRT_ID, PLAN_ENRT_DT, ENRT_STATUS_CD, PLAN_DENRT_DT, DENRT_RSN_CD, CRTD_DT, CRTD_BY_NB, UPDTD_DT, UPDTD_BY_NB, VERS_NB, PLAN_ENRT_PREM_AM, EFFV_START_DT, EFFV_END_DT, DSPL_PLAN_ID, ENRT_TYPE_CD, ADJSTD_MAX_APTC_AM, APPLN_...
Get the enrollment IDs for users with Open Enrollments and Premium Paid Date is not null.
SELECT ENRT_ID FROM HIX.T_ENRT WHERE DENRT_RSN_CD = 6572 AND ENRT_LOGICAL_ID IS NOT NULL;
HIX contains tables such as T_ENRT, T_PRSN_ENRT, T_PRSN_MBRSH. Table T_ENRT contains columns like ENRT_ID, PLAN_ENRT_DT, ENRT_STATUS_CD, PLAN_DENRT_DT, DENRT_RSN_CD, CRTD_DT, CRTD_BY_NB, UPDTD_DT, UPDTD_BY_NB, VERS_NB, PLAN_ENRT_PREM_AM, EFFV_START_DT, EFFV_END_DT, DSPL_PLAN_ID, ENRT_TYPE_CD, ADJSTD_MAX_APTC_AM, APPLN_...
Retrieve the enrollment IDs for users with CHIP Disenrollment Batch initiated by User and Enrt Logical ID is not null.
SELECT APPLN_ID FROM HIX.T_ENRT WHERE DENRT_RSN_CD = 8341 AND DENRT_ENRT_FLOW_CD IS NOT NULL;
HIX contains tables such as T_ENRT, T_PRSN_ENRT, T_PRSN_MBRSH. Table T_ENRT contains columns like ENRT_ID, PLAN_ENRT_DT, ENRT_STATUS_CD, PLAN_DENRT_DT, DENRT_RSN_CD, CRTD_DT, CRTD_BY_NB, UPDTD_DT, UPDTD_BY_NB, VERS_NB, PLAN_ENRT_PREM_AM, EFFV_START_DT, EFFV_END_DT, DSPL_PLAN_ID, ENRT_TYPE_CD, ADJSTD_MAX_APTC_AM, APPLN_...
Show me the application IDs for users with Verify Lawful Presence initiated and Denert Enrollment Flow Code is not null.
SELECT ENRT_ID FROM HIX.T_ENRT WHERE DENRT_RSN_CD = 3245 AND PREM_PAID_DT IS NULL;
HIX contains tables such as T_ENRT, T_PRSN_ENRT, T_PRSN_MBRSH. Table T_ENRT contains columns like ENRT_ID, PLAN_ENRT_DT, ENRT_STATUS_CD, PLAN_DENRT_DT, DENRT_RSN_CD, CRTD_DT, CRTD_BY_NB, UPDTD_DT, UPDTD_BY_NB, VERS_NB, PLAN_ENRT_PREM_AM, EFFV_START_DT, EFFV_END_DT, DSPL_PLAN_ID, ENRT_TYPE_CD, ADJSTD_MAX_APTC_AM, APPLN_...
Get the enrollment IDs for users with Change Reported as the disenrollment reason and Premium Paid Date is null.
SELECT ENRT_ID FROM HIX.T_ENRT WHERE CR_MAX_APTC_AM > 800;
HIX contains tables such as T_ENRT, T_PRSN_ENRT, T_PRSN_MBRSH. Table T_ENRT contains columns like ENRT_ID, PLAN_ENRT_DT, ENRT_STATUS_CD, PLAN_DENRT_DT, DENRT_RSN_CD, CRTD_DT, CRTD_BY_NB, UPDTD_DT, UPDTD_BY_NB, VERS_NB, PLAN_ENRT_PREM_AM, EFFV_START_DT, EFFV_END_DT, DSPL_PLAN_ID, ENRT_TYPE_CD, ADJSTD_MAX_APTC_AM, APPLN_...
Retrieve the enrollment IDs for users enrolled in any plan with CR Maximum APTC Amount greater than 800.
SELECT APPLN_ID FROM HIX.T_ENRT WHERE PLAN_ENRT_DT >= '2023-12-01';
HIX contains tables such as T_ENRT, T_PRSN_ENRT, T_PRSN_MBRSH. Table T_ENRT contains columns like ENRT_ID, PLAN_ENRT_DT, ENRT_STATUS_CD, PLAN_DENRT_DT, DENRT_RSN_CD, CRTD_DT, CRTD_BY_NB, UPDTD_DT, UPDTD_BY_NB, VERS_NB, PLAN_ENRT_PREM_AM, EFFV_START_DT, EFFV_END_DT, DSPL_PLAN_ID, ENRT_TYPE_CD, ADJSTD_MAX_APTC_AM, APPLN_...
Show me the application IDs for users who have enrolled in any plan on or after '2023-12-01'.
SELECT ENRT_ID FROM HIX.T_ENRT WHERE DENRT_RSN_CD = 6572 AND PLAN_ENRT_AFTER_APTC_AM IS NOT NULL;
HIX contains tables such as T_ENRT, T_PRSN_ENRT, T_PRSN_MBRSH. Table T_ENRT contains columns like ENRT_ID, PLAN_ENRT_DT, ENRT_STATUS_CD, PLAN_DENRT_DT, DENRT_RSN_CD, CRTD_DT, CRTD_BY_NB, UPDTD_DT, UPDTD_BY_NB, VERS_NB, PLAN_ENRT_PREM_AM, EFFV_START_DT, EFFV_END_DT, DSPL_PLAN_ID, ENRT_TYPE_CD, ADJSTD_MAX_APTC_AM, APPLN_...
Get the enrollment IDs for users with CHIP Disenrollment Batch initiated by User and Plan Enrt After APTC Amount is not null.
SELECT ENRT_ID FROM HIX.T_ENRT WHERE ENRT_TYPE_CD = 9855 AND CARR_EFFCTN_END_DT < '2023-12-17';
HIX contains tables such as T_ENRT, T_PRSN_ENRT, T_PRSN_MBRSH. Table T_ENRT contains columns like ENRT_ID, PLAN_ENRT_DT, ENRT_STATUS_CD, PLAN_DENRT_DT, DENRT_RSN_CD, CRTD_DT, CRTD_BY_NB, UPDTD_DT, UPDTD_BY_NB, VERS_NB, PLAN_ENRT_PREM_AM, EFFV_START_DT, EFFV_END_DT, DSPL_PLAN_ID, ENRT_TYPE_CD, ADJSTD_MAX_APTC_AM, APPLN_...
Retrieve the enrollment IDs for users enrolled in Dental Plans with Carriers Effected End Date before '2023-12-17'.
SELECT APPLN_ID FROM HIX.T_ENRT WHERE DENRT_RSN_CD = 3207 AND SKIP_SHOP_IN = 'N';
HIX contains tables such as T_ENRT, T_PRSN_ENRT, T_PRSN_MBRSH. Table T_ENRT contains columns like ENRT_ID, PLAN_ENRT_DT, ENRT_STATUS_CD, PLAN_DENRT_DT, DENRT_RSN_CD, CRTD_DT, CRTD_BY_NB, UPDTD_DT, UPDTD_BY_NB, VERS_NB, PLAN_ENRT_PREM_AM, EFFV_START_DT, EFFV_END_DT, DSPL_PLAN_ID, ENRT_TYPE_CD, ADJSTD_MAX_APTC_AM, APPLN_...
Show me the application IDs for users with Coverage Ended initiated by Assister and Skip Shopping Indicator is 'N'.
SELECT ENRT_ID FROM HIX.T_ENRT WHERE DENRT_RSN_CD = 8341 AND SPLIT_ENRT_IND IS NOT NULL;
HIX contains tables such as T_ENRT, T_PRSN_ENRT, T_PRSN_MBRSH. Table T_ENRT contains columns like ENRT_ID, PLAN_ENRT_DT, ENRT_STATUS_CD, PLAN_DENRT_DT, DENRT_RSN_CD, CRTD_DT, CRTD_BY_NB, UPDTD_DT, UPDTD_BY_NB, VERS_NB, PLAN_ENRT_PREM_AM, EFFV_START_DT, EFFV_END_DT, DSPL_PLAN_ID, ENRT_TYPE_CD, ADJSTD_MAX_APTC_AM, APPLN_...
Get the enrollment IDs for users with Verify Lawful Presence initiated and Split Enrollment Indicator is not null.
SELECT ENRT_ID FROM HIX.T_ENRT WHERE ENRT_TYPE_CD = 9855 AND CARR_EFFCTN_END_DT > '2023-12-08';
HIX contains tables such as T_ENRT, T_PRSN_ENRT, T_PRSN_MBRSH. Table T_ENRT contains columns like ENRT_ID, PLAN_ENRT_DT, ENRT_STATUS_CD, PLAN_DENRT_DT, DENRT_RSN_CD, CRTD_DT, CRTD_BY_NB, UPDTD_DT, UPDTD_BY_NB, VERS_NB, PLAN_ENRT_PREM_AM, EFFV_START_DT, EFFV_END_DT, DSPL_PLAN_ID, ENRT_TYPE_CD, ADJSTD_MAX_APTC_AM, APPLN_...
Retrieve the enrollment IDs for users enrolled in Dental Plans with Carriers Effected End Date after '2023-12-08'.
SELECT APPLN_ID FROM HIX.T_ENRT WHERE DENRT_RSN_CD = 9703 AND EFFV_END_DT IS NULL;
HIX contains tables such as T_ENRT, T_PRSN_ENRT, T_PRSN_MBRSH. Table T_ENRT contains columns like ENRT_ID, PLAN_ENRT_DT, ENRT_STATUS_CD, PLAN_DENRT_DT, DENRT_RSN_CD, CRTD_DT, CRTD_BY_NB, UPDTD_DT, UPDTD_BY_NB, VERS_NB, PLAN_ENRT_PREM_AM, EFFV_START_DT, EFFV_END_DT, DSPL_PLAN_ID, ENRT_TYPE_CD, ADJSTD_MAX_APTC_AM, APPLN_...
Show me the application IDs for users with Ageout Redetermination initiated and Effected End Date is null.
SELECT ENRT_ID FROM HIX.T_ENRT WHERE ENRT_STATUS_CD = 430 AND ADJSTD_MAX_APTC_AM <= 1900;
HIX contains tables such as T_ENRT, T_PRSN_ENRT, T_PRSN_MBRSH. Table T_ENRT contains columns like ENRT_ID, PLAN_ENRT_DT, ENRT_STATUS_CD, PLAN_DENRT_DT, DENRT_RSN_CD, CRTD_DT, CRTD_BY_NB, UPDTD_DT, UPDTD_BY_NB, VERS_NB, PLAN_ENRT_PREM_AM, EFFV_START_DT, EFFV_END_DT, DSPL_PLAN_ID, ENRT_TYPE_CD, ADJSTD_MAX_APTC_AM, APPLN_...
Get the enrollment IDs for users with Open Enrollments and Adjusted Maximum APTC Amount less than or equal to 1900.
SELECT ENRT_ID FROM HIX.T_ENRT WHERE CARR_MSG_STATUS_ID = 3239 AND PREM_PAID_DT IS NULL;
HIX contains tables such as T_ENRT, T_PRSN_ENRT, T_PRSN_MBRSH. Table T_ENRT contains columns like ENRT_ID, PLAN_ENRT_DT, ENRT_STATUS_CD, PLAN_DENRT_DT, DENRT_RSN_CD, CRTD_DT, CRTD_BY_NB, UPDTD_DT, UPDTD_BY_NB, VERS_NB, PLAN_ENRT_PREM_AM, EFFV_START_DT, EFFV_END_DT, DSPL_PLAN_ID, ENRT_TYPE_CD, ADJSTD_MAX_APTC_AM, APPLN_...
Retrieve the enrollment IDs for users with Transmitted to Carriers status and Premium Paid Date is null.
SELECT APPLN_ID FROM HIX.T_ENRT WHERE PLAN_ENRT_DT >= '2023-12-08';
HIX contains tables such as T_ENRT, T_PRSN_ENRT, T_PRSN_MBRSH. Table T_ENRT contains columns like ENRT_ID, PLAN_ENRT_DT, ENRT_STATUS_CD, PLAN_DENRT_DT, DENRT_RSN_CD, CRTD_DT, CRTD_BY_NB, UPDTD_DT, UPDTD_BY_NB, VERS_NB, PLAN_ENRT_PREM_AM, EFFV_START_DT, EFFV_END_DT, DSPL_PLAN_ID, ENRT_TYPE_CD, ADJSTD_MAX_APTC_AM, APPLN_...
Show me the application IDs for users who have enrolled in any plan on or after '2023-12-08'.
SELECT ENRT_ID FROM HIX.T_ENRT WHERE DENRT_RSN_CD = 9703 AND EFFV_END_DT IS NOT NULL;
HIX contains tables such as T_ENRT, T_PRSN_ENRT, T_PRSN_MBRSH. Table T_ENRT contains columns like ENRT_ID, PLAN_ENRT_DT, ENRT_STATUS_CD, PLAN_DENRT_DT, DENRT_RSN_CD, CRTD_DT, CRTD_BY_NB, UPDTD_DT, UPDTD_BY_NB, VERS_NB, PLAN_ENRT_PREM_AM, EFFV_START_DT, EFFV_END_DT, DSPL_PLAN_ID, ENRT_TYPE_CD, ADJSTD_MAX_APTC_AM, APPLN_...
Retrieve the enrollment IDs for users with Ageout Redetermination initiated and Effected End Date is not null.
SELECT APPLN_ID FROM HIX.T_ENRT WHERE ENRT_STATUS_CD = 430 AND ADJSTD_MAX_APTC_AM <= 2100;
HIX contains tables such as T_ENRT, T_PRSN_ENRT, T_PRSN_MBRSH. Table T_ENRT contains columns like ENRT_ID, PLAN_ENRT_DT, ENRT_STATUS_CD, PLAN_DENRT_DT, DENRT_RSN_CD, CRTD_DT, CRTD_BY_NB, UPDTD_DT, UPDTD_BY_NB, VERS_NB, PLAN_ENRT_PREM_AM, EFFV_START_DT, EFFV_END_DT, DSPL_PLAN_ID, ENRT_TYPE_CD, ADJSTD_MAX_APTC_AM, APPLN_...
Show me the application IDs for users with Open Enrollments and Adjusted Maximum APTC Amount less than or equal to 2100.
SELECT ENRT_ID FROM HIX.T_ENRT WHERE ENRT_FLOW_IN = 8279 AND MAX_APTC_AM < 1100;
HIX contains tables such as T_ENRT, T_PRSN_ENRT, T_PRSN_MBRSH. Table T_ENRT contains columns like ENRT_ID, PLAN_ENRT_DT, ENRT_STATUS_CD, PLAN_DENRT_DT, DENRT_RSN_CD, CRTD_DT, CRTD_BY_NB, UPDTD_DT, UPDTD_BY_NB, VERS_NB, PLAN_ENRT_PREM_AM, EFFV_START_DT, EFFV_END_DT, DSPL_PLAN_ID, ENRT_TYPE_CD, ADJSTD_MAX_APTC_AM, APPLN_...
Get the enrollment IDs for users with VLP Enrollment and Maximum APTC Amount less than 1100.
SELECT ENRT_ID FROM HIX.T_ENRT WHERE DENRT_RSN_CD = 8341 AND DENRT_ENRT_FLOW_CD IS NOT NULL;
HIX contains tables such as T_ENRT, T_PRSN_ENRT, T_PRSN_MBRSH. Table T_ENRT contains columns like ENRT_ID, PLAN_ENRT_DT, ENRT_STATUS_CD, PLAN_DENRT_DT, DENRT_RSN_CD, CRTD_DT, CRTD_BY_NB, UPDTD_DT, UPDTD_BY_NB, VERS_NB, PLAN_ENRT_PREM_AM, EFFV_START_DT, EFFV_END_DT, DSPL_PLAN_ID, ENRT_TYPE_CD, ADJSTD_MAX_APTC_AM, APPLN_...
Retrieve the enrollment IDs for users with Verify Lawful Presence initiated and Denert Enrollment Flow Code is not null.
SELECT APPLN_ID FROM HIX.T_ENRT WHERE ENRT_IND_CD = 1928 AND DENRT_APPLN_ID IS NULL;
HIX contains tables such as T_ENRT, T_PRSN_ENRT, T_PRSN_MBRSH. Table T_ENRT contains columns like ENRT_ID, PLAN_ENRT_DT, ENRT_STATUS_CD, PLAN_DENRT_DT, DENRT_RSN_CD, CRTD_DT, CRTD_BY_NB, UPDTD_DT, UPDTD_BY_NB, VERS_NB, PLAN_ENRT_PREM_AM, EFFV_START_DT, EFFV_END_DT, DSPL_PLAN_ID, ENRT_TYPE_CD, ADJSTD_MAX_APTC_AM, APPLN_...
Show me the application IDs for users with Special Enrollments and Denert Application ID is null.
SELECT ENRT_ID FROM HIX.T_ENRT WHERE DENRT_RSN_CD = 3245 AND PREM_PAID_DT IS NULL;
HIX contains tables such as T_ENRT, T_PRSN_ENRT, T_PRSN_MBRSH. Table T_ENRT contains columns like ENRT_ID, PLAN_ENRT_DT, ENRT_STATUS_CD, PLAN_DENRT_DT, DENRT_RSN_CD, CRTD_DT, CRTD_BY_NB, UPDTD_DT, UPDTD_BY_NB, VERS_NB, PLAN_ENRT_PREM_AM, EFFV_START_DT, EFFV_END_DT, DSPL_PLAN_ID, ENRT_TYPE_CD, ADJSTD_MAX_APTC_AM, APPLN_...
Get the enrollment IDs for users with Change Reported as the disenrollment reason and Premium Paid Date is null.
SELECT ENRT_ID FROM HIX.T_ENRT WHERE CR_MAX_APTC_AM > 700;
HIX contains tables such as T_ENRT, T_PRSN_ENRT, T_PRSN_MBRSH. Table T_ENRT contains columns like ENRT_ID, PLAN_ENRT_DT, ENRT_STATUS_CD, PLAN_DENRT_DT, DENRT_RSN_CD, CRTD_DT, CRTD_BY_NB, UPDTD_DT, UPDTD_BY_NB, VERS_NB, PLAN_ENRT_PREM_AM, EFFV_START_DT, EFFV_END_DT, DSPL_PLAN_ID, ENRT_TYPE_CD, ADJSTD_MAX_APTC_AM, APPLN_...
Retrieve the enrollment IDs for users enrolled in any plan with CR Maximum APTC Amount greater than 700.
SELECT APPLN_ID FROM HIX.T_ENRT WHERE PLAN_ENRT_DT >= '2023-11-30';
HIX contains tables such as T_ENRT, T_PRSN_ENRT, T_PRSN_MBRSH. Table T_ENRT contains columns like ENRT_ID, PLAN_ENRT_DT, ENRT_STATUS_CD, PLAN_DENRT_DT, DENRT_RSN_CD, CRTD_DT, CRTD_BY_NB, UPDTD_DT, UPDTD_BY_NB, VERS_NB, PLAN_ENRT_PREM_AM, EFFV_START_DT, EFFV_END_DT, DSPL_PLAN_ID, ENRT_TYPE_CD, ADJSTD_MAX_APTC_AM, APPLN_...
Show me the application IDs for users who have enrolled in any plan on or after '2023-11-30'.
SELECT ENRT_ID FROM HIX.T_ENRT WHERE ENRT_FLOW_IN = 8612 AND ENRT_LOGICAL_ID IS NOT NULL;
HIX contains tables such as T_ENRT, T_PRSN_ENRT, T_PRSN_MBRSH. Table T_ENRT contains columns like ENRT_ID, PLAN_ENRT_DT, ENRT_STATUS_CD, PLAN_DENRT_DT, DENRT_RSN_CD, CRTD_DT, CRTD_BY_NB, UPDTD_DT, UPDTD_BY_NB, VERS_NB, PLAN_ENRT_PREM_AM, EFFV_START_DT, EFFV_END_DT, DSPL_PLAN_ID, ENRT_TYPE_CD, ADJSTD_MAX_APTC_AM, APPLN_...
Retrieve the enrollment IDs for users with Partial Disenrollment initiated by User and Enrt Logical ID is not null.
SELECT APPLN_ID FROM HIX.T_ENRT WHERE ENRT_IND_CD = 1927 AND MAX_APTC_AM >= 3500;
HIX contains tables such as T_ENRT, T_PRSN_ENRT, T_PRSN_MBRSH. Table T_ENRT contains columns like ENRT_ID, PLAN_ENRT_DT, ENRT_STATUS_CD, PLAN_DENRT_DT, DENRT_RSN_CD, CRTD_DT, CRTD_BY_NB, UPDTD_DT, UPDTD_BY_NB, VERS_NB, PLAN_ENRT_PREM_AM, EFFV_START_DT, EFFV_END_DT, DSPL_PLAN_ID, ENRT_TYPE_CD, ADJSTD_MAX_APTC_AM, APPLN_...
Show me the application IDs for users with Open Enrollments and Max APTC Amount greater than or equal to 3500.
SELECT ENRT_ID FROM HIX.T_ENRT WHERE DENRT_RSN_CD = 6572 AND PLAN_ENRT_AFTER_APTC_AM IS NOT NULL;
HIX contains tables such as T_ENRT, T_PRSN_ENRT, T_PRSN_MBRSH. Table T_ENRT contains columns like ENRT_ID, PLAN_ENRT_DT, ENRT_STATUS_CD, PLAN_DENRT_DT, DENRT_RSN_CD, CRTD_DT, CRTD_BY_NB, UPDTD_DT, UPDTD_BY_NB, VERS_NB, PLAN_ENRT_PREM_AM, EFFV_START_DT, EFFV_END_DT, DSPL_PLAN_ID, ENRT_TYPE_CD, ADJSTD_MAX_APTC_AM, APPLN_...
Get the enrollment IDs for users with CHIP Disenrollment Batch initiated by User and Plan Enrt After APTC Amount is not null.
SELECT ENRT_ID FROM HIX.T_ENRT WHERE ENRT_TYPE_CD = 9855 AND CARR_EFFCTN_END_DT < '2023-12-15';
HIX contains tables such as T_ENRT, T_PRSN_ENRT, T_PRSN_MBRSH. Table T_ENRT contains columns like ENRT_ID, PLAN_ENRT_DT, ENRT_STATUS_CD, PLAN_DENRT_DT, DENRT_RSN_CD, CRTD_DT, CRTD_BY_NB, UPDTD_DT, UPDTD_BY_NB, VERS_NB, PLAN_ENRT_PREM_AM, EFFV_START_DT, EFFV_END_DT, DSPL_PLAN_ID, ENRT_TYPE_CD, ADJSTD_MAX_APTC_AM, APPLN_...
Retrieve the enrollment IDs for users enrolled in Dental Plans with Carriers Effected End Date before '2023-12-15'.
SELECT APPLN_ID FROM HIX.T_ENRT WHERE DENRT_RSN_CD = 3207 AND SKIP_SHOP_IN = 'Y';
HIX contains tables such as T_ENRT, T_PRSN_ENRT, T_PRSN_MBRSH. Table T_ENRT contains columns like ENRT_ID, PLAN_ENRT_DT, ENRT_STATUS_CD, PLAN_DENRT_DT, DENRT_RSN_CD, CRTD_DT, CRTD_BY_NB, UPDTD_DT, UPDTD_BY_NB, VERS_NB, PLAN_ENRT_PREM_AM, EFFV_START_DT, EFFV_END_DT, DSPL_PLAN_ID, ENRT_TYPE_CD, ADJSTD_MAX_APTC_AM, APPLN_...
Show me the application IDs for users with Coverage Ended initiated by Assister and Skip Shopping Indicator is 'Y'.
SELECT ENRT_ID FROM HIX.T_ENRT WHERE DENRT_RSN_CD = 8341 AND SPLIT_ENRT_IND IS NOT NULL;
HIX contains tables such as T_ENRT, T_PRSN_ENRT, T_PRSN_MBRSH. Table T_ENRT contains columns like ENRT_ID, PLAN_ENRT_DT, ENRT_STATUS_CD, PLAN_DENRT_DT, DENRT_RSN_CD, CRTD_DT, CRTD_BY_NB, UPDTD_DT, UPDTD_BY_NB, VERS_NB, PLAN_ENRT_PREM_AM, EFFV_START_DT, EFFV_END_DT, DSPL_PLAN_ID, ENRT_TYPE_CD, ADJSTD_MAX_APTC_AM, APPLN_...
Get the enrollment IDs for users with Verify Lawful Presence initiated and Split Enrollment Indicator is not null.
SELECT ENRT_ID FROM HIX.T_ENRT WHERE ENRT_TYPE_CD = 9855 AND CARR_EFFCTN_END_DT > '2023-12-05';
HIX contains tables such as T_ENRT, T_PRSN_ENRT, T_PRSN_MBRSH. Table T_ENRT contains columns like ENRT_ID, PLAN_ENRT_DT, ENRT_STATUS_CD, PLAN_DENRT_DT, DENRT_RSN_CD, CRTD_DT, CRTD_BY_NB, UPDTD_DT, UPDTD_BY_NB, VERS_NB, PLAN_ENRT_PREM_AM, EFFV_START_DT, EFFV_END_DT, DSPL_PLAN_ID, ENRT_TYPE_CD, ADJSTD_MAX_APTC_AM, APPLN_...
Retrieve the enrollment IDs for users enrolled in Dental Plans with Carriers Effected End Date after '2023-12-05'.
SELECT APPLN_ID FROM HIX.T_ENRT WHERE DENRT_RSN_CD = 9703 AND EFFV_END_DT IS NULL;
HIX contains tables such as T_ENRT, T_PRSN_ENRT, T_PRSN_MBRSH. Table T_ENRT contains columns like ENRT_ID, PLAN_ENRT_DT, ENRT_STATUS_CD, PLAN_DENRT_DT, DENRT_RSN_CD, CRTD_DT, CRTD_BY_NB, UPDTD_DT, UPDTD_BY_NB, VERS_NB, PLAN_ENRT_PREM_AM, EFFV_START_DT, EFFV_END_DT, DSPL_PLAN_ID, ENRT_TYPE_CD, ADJSTD_MAX_APTC_AM, APPLN_...
Show me the application IDs for users with Ageout Redetermination initiated and Effected End Date is null.
SELECT ENRT_ID FROM HIX.T_ENRT WHERE ENRT_STATUS_CD = 430 AND ADJSTD_MAX_APTC_AM <= 2000;
HIX contains tables such as T_ENRT, T_PRSN_ENRT, T_PRSN_MBRSH. Table T_ENRT contains columns like ENRT_ID, PLAN_ENRT_DT, ENRT_STATUS_CD, PLAN_DENRT_DT, DENRT_RSN_CD, CRTD_DT, CRTD_BY_NB, UPDTD_DT, UPDTD_BY_NB, VERS_NB, PLAN_ENRT_PREM_AM, EFFV_START_DT, EFFV_END_DT, DSPL_PLAN_ID, ENRT_TYPE_CD, ADJSTD_MAX_APTC_AM, APPLN_...
Get the enrollment IDs for users with Open Enrollments and Adjusted Maximum APTC Amount less than or equal to 2000.
SELECT ENRT_ID FROM HIX.T_ENRT WHERE CARR_MSG_STATUS_ID = 3239 AND PREM_PAID_DT IS NULL;
HIX contains tables such as T_ENRT, T_PRSN_ENRT, T_PRSN_MBRSH. Table T_ENRT contains columns like ENRT_ID, PLAN_ENRT_DT, ENRT_STATUS_CD, PLAN_DENRT_DT, DENRT_RSN_CD, CRTD_DT, CRTD_BY_NB, UPDTD_DT, UPDTD_BY_NB, VERS_NB, PLAN_ENRT_PREM_AM, EFFV_START_DT, EFFV_END_DT, DSPL_PLAN_ID, ENRT_TYPE_CD, ADJSTD_MAX_APTC_AM, APPLN_...
Retrieve the enrollment IDs for users with Transmitted to Carriers status and Premium Paid Date is null.
SELECT APPLN_ID FROM HIX.T_ENRT WHERE PLAN_ENRT_DT >= '2023-12-05';
HIX contains tables such as T_ENRT, T_PRSN_ENRT, T_PRSN_MBRSH. Table T_ENRT contains columns like ENRT_ID, PLAN_ENRT_DT, ENRT_STATUS_CD, PLAN_DENRT_DT, DENRT_RSN_CD, CRTD_DT, CRTD_BY_NB, UPDTD_DT, UPDTD_BY_NB, VERS_NB, PLAN_ENRT_PREM_AM, EFFV_START_DT, EFFV_END_DT, DSPL_PLAN_ID, ENRT_TYPE_CD, ADJSTD_MAX_APTC_AM, APPLN_...
Show me the application IDs for users who have enrolled in any plan on or after '2023-12-05'.
SELECT ENRT_ID FROM HIX.T_ENRT WHERE DENRT_RSN_CD = 9703 AND EFFV_END_DT IS NOT NULL;
HIX contains tables such as T_ENRT, T_PRSN_ENRT, T_PRSN_MBRSH. Table T_ENRT contains columns like ENRT_ID, PLAN_ENRT_DT, ENRT_STATUS_CD, PLAN_DENRT_DT, DENRT_RSN_CD, CRTD_DT, CRTD_BY_NB, UPDTD_DT, UPDTD_BY_NB, VERS_NB, PLAN_ENRT_PREM_AM, EFFV_START_DT, EFFV_END_DT, DSPL_PLAN_ID, ENRT_TYPE_CD, ADJSTD_MAX_APTC_AM, APPLN_...
Retrieve the enrollment IDs for users with Ageout Redetermination initiated and Effected End Date is not null.
SELECT APPLN_ID FROM HIX.T_ENRT WHERE ENRT_STATUS_CD = 430 AND ADJSTD_MAX_APTC_AM <= 2200;
HIX contains tables such as T_ENRT, T_PRSN_ENRT, T_PRSN_MBRSH. Table T_ENRT contains columns like ENRT_ID, PLAN_ENRT_DT, ENRT_STATUS_CD, PLAN_DENRT_DT, DENRT_RSN_CD, CRTD_DT, CRTD_BY_NB, UPDTD_DT, UPDTD_BY_NB, VERS_NB, PLAN_ENRT_PREM_AM, EFFV_START_DT, EFFV_END_DT, DSPL_PLAN_ID, ENRT_TYPE_CD, ADJSTD_MAX_APTC_AM, APPLN_...
Show me the application IDs for users with Open Enrollments and Adjusted Maximum APTC Amount less than or equal to 2200.
SELECT ENRT_ID FROM HIX.T_ENRT WHERE ENRT_FLOW_IN = 8279 AND MAX_APTC_AM < 1200;
HIX contains tables such as T_ENRT, T_PRSN_ENRT, T_PRSN_MBRSH. Table T_ENRT contains columns like ENRT_ID, PLAN_ENRT_DT, ENRT_STATUS_CD, PLAN_DENRT_DT, DENRT_RSN_CD, CRTD_DT, CRTD_BY_NB, UPDTD_DT, UPDTD_BY_NB, VERS_NB, PLAN_ENRT_PREM_AM, EFFV_START_DT, EFFV_END_DT, DSPL_PLAN_ID, ENRT_TYPE_CD, ADJSTD_MAX_APTC_AM, APPLN_...
Get the enrollment IDs for users with VLP Enrollment and Maximum APTC Amount less than 1200.
SELECT APPLN_ID FROM HIX.T_ENRT WHERE DENRT_RSN_CD = 6572 AND SKIP_SHOP_IN = 'N';
HIX contains tables such as T_ENRT, T_PRSN_ENRT, T_PRSN_MBRSH. Table T_ENRT contains columns like ENRT_ID, PLAN_ENRT_DT, ENRT_STATUS_CD, PLAN_DENRT_DT, DENRT_RSN_CD, CRTD_DT, CRTD_BY_NB, UPDTD_DT, UPDTD_BY_NB, VERS_NB, PLAN_ENRT_PREM_AM, EFFV_START_DT, EFFV_END_DT, DSPL_PLAN_ID, ENRT_TYPE_CD, ADJSTD_MAX_APTC_AM, APPLN_...
Show me the application IDs for users with CHIP Disenrollment Batch initiated by User and Skip Shopping Indicator is 'N'.
SELECT ENRT_ID FROM HIX.T_ENRT WHERE CAC_ASSIST_ID IS NOT NULL;
HIX contains tables such as T_ENRT, T_PRSN_ENRT, T_PRSN_MBRSH. Table T_ENRT contains columns like ENRT_ID, PLAN_ENRT_DT, ENRT_STATUS_CD, PLAN_DENRT_DT, DENRT_RSN_CD, CRTD_DT, CRTD_BY_NB, UPDTD_DT, UPDTD_BY_NB, VERS_NB, PLAN_ENRT_PREM_AM, EFFV_START_DT, EFFV_END_DT, DSPL_PLAN_ID, ENRT_TYPE_CD, ADJSTD_MAX_APTC_AM, APPLN_...
Retrieve the enrollment IDs for users enrolled in any plan with CAC Assister ID is not null.
SELECT ENRT_ID FROM HIX.T_ENRT WHERE DENRT_RSN_CD = 3207 AND ENRT_FLOW_IN IS NOT NULL;
HIX contains tables such as T_ENRT, T_PRSN_ENRT, T_PRSN_MBRSH. Table T_ENRT contains columns like ENRT_ID, PLAN_ENRT_DT, ENRT_STATUS_CD, PLAN_DENRT_DT, DENRT_RSN_CD, CRTD_DT, CRTD_BY_NB, UPDTD_DT, UPDTD_BY_NB, VERS_NB, PLAN_ENRT_PREM_AM, EFFV_START_DT, EFFV_END_DT, DSPL_PLAN_ID, ENRT_TYPE_CD, ADJSTD_MAX_APTC_AM, APPLN_...
Get the enrollment IDs for users with Coverage Ended initiated by Assister and Enrt Flow Indicator is not null.
SELECT APPLN_ID FROM HIX.T_ENRT WHERE ENRT_STATUS_CD = 2340 AND PREM_PAID_DT IS NOT NULL;
HIX contains tables such as T_ENRT, T_PRSN_ENRT, T_PRSN_MBRSH. Table T_ENRT contains columns like ENRT_ID, PLAN_ENRT_DT, ENRT_STATUS_CD, PLAN_DENRT_DT, DENRT_RSN_CD, CRTD_DT, CRTD_BY_NB, UPDTD_DT, UPDTD_BY_NB, VERS_NB, PLAN_ENRT_PREM_AM, EFFV_START_DT, EFFV_END_DT, DSPL_PLAN_ID, ENRT_TYPE_CD, ADJSTD_MAX_APTC_AM, APPLN_...
Show me the application IDs for users with Change in Enrollment and Premium Paid Date is not null.
SELECT ENRT_ID FROM HIX.T_ENRT WHERE DENRT_RSN_CD = 3245 AND DENRT_ENRT_FLOW_CD IS NOT NULL;
HIX contains tables such as T_ENRT, T_PRSN_ENRT, T_PRSN_MBRSH. Table T_ENRT contains columns like ENRT_ID, PLAN_ENRT_DT, ENRT_STATUS_CD, PLAN_DENRT_DT, DENRT_RSN_CD, CRTD_DT, CRTD_BY_NB, UPDTD_DT, UPDTD_BY_NB, VERS_NB, PLAN_ENRT_PREM_AM, EFFV_START_DT, EFFV_END_DT, DSPL_PLAN_ID, ENRT_TYPE_CD, ADJSTD_MAX_APTC_AM, APPLN_...
Retrieve the enrollment IDs for users with Change Reported as the disenrollment reason and Denert Reason Code is not null.
SELECT ENRT_ID FROM HIX.T_ENRT WHERE ENRT_FLOW_IN = 8279 AND CR_MAX_APTC_AM < 1000;
HIX contains tables such as T_ENRT, T_PRSN_ENRT, T_PRSN_MBRSH. Table T_ENRT contains columns like ENRT_ID, PLAN_ENRT_DT, ENRT_STATUS_CD, PLAN_DENRT_DT, DENRT_RSN_CD, CRTD_DT, CRTD_BY_NB, UPDTD_DT, UPDTD_BY_NB, VERS_NB, PLAN_ENRT_PREM_AM, EFFV_START_DT, EFFV_END_DT, DSPL_PLAN_ID, ENRT_TYPE_CD, ADJSTD_MAX_APTC_AM, APPLN_...
Get the enrollment IDs for users with VLP Enrollment and CR Maximum APTC Amount less than 1000.
SELECT APPLN_ID FROM HIX.T_ENRT WHERE PLAN_ENRT_DT >= '2023-12-02';
HIX contains tables such as T_ENRT, T_PRSN_ENRT, T_PRSN_MBRSH. Table T_ENRT contains columns like ENRT_ID, PLAN_ENRT_DT, ENRT_STATUS_CD, PLAN_DENRT_DT, DENRT_RSN_CD, CRTD_DT, CRTD_BY_NB, UPDTD_DT, UPDTD_BY_NB, VERS_NB, PLAN_ENRT_PREM_AM, EFFV_START_DT, EFFV_END_DT, DSPL_PLAN_ID, ENRT_TYPE_CD, ADJSTD_MAX_APTC_AM, APPLN_...
Show me the application IDs for users who have enrolled in any plan on or after '2023-12-02'.
SELECT ENRT_ID FROM HIX.T_ENRT WHERE DENRT_RSN_CD = 9703 AND EFFV_START_DT IS NOT NULL;
HIX contains tables such as T_ENRT, T_PRSN_ENRT, T_PRSN_MBRSH. Table T_ENRT contains columns like ENRT_ID, PLAN_ENRT_DT, ENRT_STATUS_CD, PLAN_DENRT_DT, DENRT_RSN_CD, CRTD_DT, CRTD_BY_NB, UPDTD_DT, UPDTD_BY_NB, VERS_NB, PLAN_ENRT_PREM_AM, EFFV_START_DT, EFFV_END_DT, DSPL_PLAN_ID, ENRT_TYPE_CD, ADJSTD_MAX_APTC_AM, APPLN_...
Retrieve the enrollment IDs for users with Ageout Redetermination initiated and Effected Start Date is not null.
SELECT ENRT_ID FROM HIX.T_ENRT WHERE ENRT_STATUS_CD = 430 AND ADJSTD_MAX_APTC_AM <= 1800;
HIX contains tables such as T_ENRT, T_PRSN_ENRT, T_PRSN_MBRSH. Table T_ENRT contains columns like ENRT_ID, PLAN_ENRT_DT, ENRT_STATUS_CD, PLAN_DENRT_DT, DENRT_RSN_CD, CRTD_DT, CRTD_BY_NB, UPDTD_DT, UPDTD_BY_NB, VERS_NB, PLAN_ENRT_PREM_AM, EFFV_START_DT, EFFV_END_DT, DSPL_PLAN_ID, ENRT_TYPE_CD, ADJSTD_MAX_APTC_AM, APPLN_...
Get the enrollment IDs for users with Open Enrollments and Adjusted Maximum APTC Amount less than or equal to 1800.
SELECT APPLN_ID FROM HIX.T_ENRT WHERE CARR_MSG_STATUS_ID = 3239 AND MAX_APTC_AM >= 3000;
HIX contains tables such as T_ENRT, T_PRSN_ENRT, T_PRSN_MBRSH. Table T_ENRT contains columns like ENRT_ID, PLAN_ENRT_DT, ENRT_STATUS_CD, PLAN_DENRT_DT, DENRT_RSN_CD, CRTD_DT, CRTD_BY_NB, UPDTD_DT, UPDTD_BY_NB, VERS_NB, PLAN_ENRT_PREM_AM, EFFV_START_DT, EFFV_END_DT, DSPL_PLAN_ID, ENRT_TYPE_CD, ADJSTD_MAX_APTC_AM, APPLN_...
Show me the application IDs for users with Transmitted to Carriers status and Max APTC Amount greater than or equal to 3000.
SELECT ENRT_ID FROM HIX.T_ENRT WHERE ENRT_TYPE_CD = 9855 AND CARR_EFFCTN_END_DT < '2023-12-20';
HIX contains tables such as T_ENRT, T_PRSN_ENRT, T_PRSN_MBRSH. Table T_ENRT contains columns like ENRT_ID, PLAN_ENRT_DT, ENRT_STATUS_CD, PLAN_DENRT_DT, DENRT_RSN_CD, CRTD_DT, CRTD_BY_NB, UPDTD_DT, UPDTD_BY_NB, VERS_NB, PLAN_ENRT_PREM_AM, EFFV_START_DT, EFFV_END_DT, DSPL_PLAN_ID, ENRT_TYPE_CD, ADJSTD_MAX_APTC_AM, APPLN_...
Retrieve the enrollment IDs for users enrolled in Dental Plans with Carriers Effected End Date before '2023-12-20'.
SELECT APPLN_ID FROM HIX.T_ENRT WHERE DENRT_RSN_CD = 8341 AND DENRT_APPLN_ID IS NULL;
HIX contains tables such as T_ENRT, T_PRSN_ENRT, T_PRSN_MBRSH. Table T_ENRT contains columns like ENRT_ID, PLAN_ENRT_DT, ENRT_STATUS_CD, PLAN_DENRT_DT, DENRT_RSN_CD, CRTD_DT, CRTD_BY_NB, UPDTD_DT, UPDTD_BY_NB, VERS_NB, PLAN_ENRT_PREM_AM, EFFV_START_DT, EFFV_END_DT, DSPL_PLAN_ID, ENRT_TYPE_CD, ADJSTD_MAX_APTC_AM, APPLN_...
Show me the application IDs for users with Verify Lawful Presence initiated and Denert Application ID is null.
SELECT ENRT_ID FROM HIX.T_ENRT WHERE ENRT_IND_CD = 1928 AND PREM_PAID_DT IS NOT NULL;
HIX contains tables such as T_ENRT, T_PRSN_ENRT, T_PRSN_MBRSH. Table T_ENRT contains columns like ENRT_ID, PLAN_ENRT_DT, ENRT_STATUS_CD, PLAN_DENRT_DT, DENRT_RSN_CD, CRTD_DT, CRTD_BY_NB, UPDTD_DT, UPDTD_BY_NB, VERS_NB, PLAN_ENRT_PREM_AM, EFFV_START_DT, EFFV_END_DT, DSPL_PLAN_ID, ENRT_TYPE_CD, ADJSTD_MAX_APTC_AM, APPLN_...
Get the enrollment IDs for users with Special Enrollments and Premium Paid Date is not null.
SELECT ENRT_ID FROM HIX.T_ENRT WHERE DENRT_RSN_CD = 3245 AND DENRT_ENRT_FLOW_CD IS NOT NULL;
HIX contains tables such as T_ENRT, T_PRSN_ENRT, T_PRSN_MBRSH. Table T_ENRT contains columns like ENRT_ID, PLAN_ENRT_DT, ENRT_STATUS_CD, PLAN_DENRT_DT, DENRT_RSN_CD, CRTD_DT, CRTD_BY_NB, UPDTD_DT, UPDTD_BY_NB, VERS_NB, PLAN_ENRT_PREM_AM, EFFV_START_DT, EFFV_END_DT, DSPL_PLAN_ID, ENRT_TYPE_CD, ADJSTD_MAX_APTC_AM, APPLN_...
Retrieve the enrollment IDs for users with Change Reported as the disenrollment reason and Denert Enrollment Flow Code is not null.
SELECT ENRT_ID FROM HIX.T_ENRT WHERE DENRT_RSN_CD = 6572 AND PLAN_DENRT_DT IS NOT NULL;
HIX contains tables such as T_ENRT, T_PRSN_ENRT, T_PRSN_MBRSH. Table T_ENRT contains columns like ENRT_ID, PLAN_ENRT_DT, ENRT_STATUS_CD, PLAN_DENRT_DT, DENRT_RSN_CD, CRTD_DT, CRTD_BY_NB, UPDTD_DT, UPDTD_BY_NB, VERS_NB, PLAN_ENRT_PREM_AM, EFFV_START_DT, EFFV_END_DT, DSPL_PLAN_ID, ENRT_TYPE_CD, ADJSTD_MAX_APTC_AM, APPLN_...
Get the enrollment IDs for users with CHIP Disenrollment Batch initiated by User and Plan Denert Date is not null.
SELECT APPLN_ID FROM HIX.T_ENRT WHERE PLAN_ENRT_DT >= '2023-12-10';
HIX contains tables such as T_ENRT, T_PRSN_ENRT, T_PRSN_MBRSH. Table T_ENRT contains columns like ENRT_ID, PLAN_ENRT_DT, ENRT_STATUS_CD, PLAN_DENRT_DT, DENRT_RSN_CD, CRTD_DT, CRTD_BY_NB, UPDTD_DT, UPDTD_BY_NB, VERS_NB, PLAN_ENRT_PREM_AM, EFFV_START_DT, EFFV_END_DT, DSPL_PLAN_ID, ENRT_TYPE_CD, ADJSTD_MAX_APTC_AM, APPLN_...
Show me the application IDs for users who have enrolled in any plan on or after '2023-12-10'.
SELECT ENRT_ID FROM HIX.T_ENRT WHERE DENRT_RSN_CD = 3207 AND SKIP_SHOP_IN = 'Y';
HIX contains tables such as T_ENRT, T_PRSN_ENRT, T_PRSN_MBRSH. Table T_ENRT contains columns like ENRT_ID, PLAN_ENRT_DT, ENRT_STATUS_CD, PLAN_DENRT_DT, DENRT_RSN_CD, CRTD_DT, CRTD_BY_NB, UPDTD_DT, UPDTD_BY_NB, VERS_NB, PLAN_ENRT_PREM_AM, EFFV_START_DT, EFFV_END_DT, DSPL_PLAN_ID, ENRT_TYPE_CD, ADJSTD_MAX_APTC_AM, APPLN_...
Retrieve the enrollment IDs for users with Coverage Ended initiated by Assister and Skip Shopping Indicator is 'Y'.
SELECT ENRT_ID FROM HIX.T_ENRT WHERE DENRT_RSN_CD = 8341 AND SPLIT_ENRT_IND IS NOT NULL;
HIX contains tables such as T_ENRT, T_PRSN_ENRT, T_PRSN_MBRSH. Table T_ENRT contains columns like ENRT_ID, PLAN_ENRT_DT, ENRT_STATUS_CD, PLAN_DENRT_DT, DENRT_RSN_CD, CRTD_DT, CRTD_BY_NB, UPDTD_DT, UPDTD_BY_NB, VERS_NB, PLAN_ENRT_PREM_AM, EFFV_START_DT, EFFV_END_DT, DSPL_PLAN_ID, ENRT_TYPE_CD, ADJSTD_MAX_APTC_AM, APPLN_...
Get the enrollment IDs for users with Verify Lawful Presence initiated and Split Enrollment Indicator is not null.
SELECT ENRT_ID FROM HIX.T_ENRT WHERE ENRT_TYPE_CD = 9855 AND CARR_EFFCTN_END_DT > '2023-12-12';
HIX contains tables such as T_ENRT, T_PRSN_ENRT, T_PRSN_MBRSH. Table T_ENRT contains columns like ENRT_ID, PLAN_ENRT_DT, ENRT_STATUS_CD, PLAN_DENRT_DT, DENRT_RSN_CD, CRTD_DT, CRTD_BY_NB, UPDTD_DT, UPDTD_BY_NB, VERS_NB, PLAN_ENRT_PREM_AM, EFFV_START_DT, EFFV_END_DT, DSPL_PLAN_ID, ENRT_TYPE_CD, ADJSTD_MAX_APTC_AM, APPLN_...
Retrieve the enrollment IDs for users enrolled in Dental Plans with Carriers Effected End Date after '2023-12-12'.
SELECT APPLN_ID FROM HIX.T_ENRT WHERE DENRT_RSN_CD = 6572 AND PLAN_ENRT_AFTER_APTC_AM IS NOT NULL;
HIX contains tables such as T_ENRT, T_PRSN_ENRT, T_PRSN_MBRSH. Table T_ENRT contains columns like ENRT_ID, PLAN_ENRT_DT, ENRT_STATUS_CD, PLAN_DENRT_DT, DENRT_RSN_CD, CRTD_DT, CRTD_BY_NB, UPDTD_DT, UPDTD_BY_NB, VERS_NB, PLAN_ENRT_PREM_AM, EFFV_START_DT, EFFV_END_DT, DSPL_PLAN_ID, ENRT_TYPE_CD, ADJSTD_MAX_APTC_AM, APPLN_...
Show me the application IDs for users with CHIP Disenrollment Batch initiated by User and Plan Enrt After APTC Amount is not null.
SELECT ENRT_ID FROM HIX.T_ENRT WHERE ENRT_TYPE_CD = 9855 AND CARR_EFFCTN_END_DT < '2023-12-10';
HIX contains tables such as T_ENRT, T_PRSN_ENRT, T_PRSN_MBRSH. Table T_ENRT contains columns like ENRT_ID, PLAN_ENRT_DT, ENRT_STATUS_CD, PLAN_DENRT_DT, DENRT_RSN_CD, CRTD_DT, CRTD_BY_NB, UPDTD_DT, UPDTD_BY_NB, VERS_NB, PLAN_ENRT_PREM_AM, EFFV_START_DT, EFFV_END_DT, DSPL_PLAN_ID, ENRT_TYPE_CD, ADJSTD_MAX_APTC_AM, APPLN_...
Retrieve the enrollment IDs for users enrolled in Dental Plans with Carriers Effected End Date before '2023-12-10'.