Question: I want a sql query that will give me an output with :the payer code, payer name, payer category code, example inpatient visit, inpatient count,

I want a sql query that will give me an output with :the payer code, payer name, payer category code, example inpatient visit, inpatient count, facility name, and facility code. NOTE: You can get the inpatientcount
FROM general_adt
WHERE admit_date > NOW()- INTERVAL '30 Days'
AND patient_class IN ('I','INPATIENT','Inpatient','IN')
GROUP BY 1,2;
Here is some information about my tables; The payer table has the following: code, name, payer_category_code. The visit table has the following: visit_id, account_no, admit_status, loc_poc. The visit_payer table has the following: plan_id, visit_id. The configuration_option table has the following: config_key. The facility table has the following: code, name. The location table has the following: facility_code, code, name. The general_adt table has the following: account_no, patient_id, visit_no. Please let me know if you have any questions!

Step by Step Solution

There are 3 Steps involved in it

1 Expert Approved Answer
Step: 1 Unlock blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Databases Questions!