Question: I want the payer code, payer name, payer category code, example inpatient visit, inpatient count, facility name, and facility code. Right now my code only
I want the payer code, payer name, payer category code, example inpatient visit, inpatient count, facility name, and facility code. Right now my code only outputs the following: payer code, payer name, payer category code, example inpatient visit. Please provide a SQL query that it will include inpatient count, facility name, and facility code in the output as well.
SELECT DISTINCT
code,
name
payercategorycode,
https:select value
from configurationoption
where configkey 'customerId'
test'visitsvisitid exampleinpatientvisit
FROM payer p
LEFT JOIN SELECT
splitpartpayers payer
maxvisitid visitid
FROM visit
WHERE predischadmitstatus OR admitstatus
AND admitdate NOW INTERVAL Days'
AND facility is not null
AND locpoc is not null
GROUP BY
visits ON visits.payer pcode
UNION
SELECT DISTINCT
vpplanid
vpcompanyname
'NOT MAPPED'
https:select value
from configurationoption
where configkey 'customerId'
test'visitsvisitid exampleinpatientvisit
FROM visitpayer vp
LEFT JOIN payer p ON pcode vpplanid
LEFT JOIN SELECT
splitpartpayers payer
maxvisitid visitid
FROM visit
WHERE predischadmitstatus OR admitstatus
AND admitdate NOW INTERVAL Days'
AND facility is not null
AND locpoc is not null
GROUP BY
visits ON visits.payer vpplanid
WHERE pcode IS NULL
AND vpcreationdate NOW INTERVAL days'
ORDER BY ;
NOTE: You can get the inpatientcount
FROM generaladt
WHERE admitdate NOW INTERVAL Days'
AND patientclass IN I'INPATIENT','Inpatient',IN
GROUP BY ;
Here is some information about my tables; The payer table has the following: code, name, payercategorycode. The visit table has the following: visitid accountno admitstatus, locpoc. The visitpayer table has the following: planid visitid The configurationoption table has the following: configkey. The facility table has the following: code, name. The location table has the following: facilitycode, code, name. The generaladt table has the following: accountno patientid visitno 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
Question Has Been Solved by an Expert!
Get step-by-step solutions from verified subject matter experts
Step: 2 Unlock
Step: 3 Unlock
