Revision [424]

Last edited on 2010-09-24 13:30:19 by SethKrieger
Additions:
======Active Patients Without a Diagnosis======
I am interested in running a report based on the active patients who currently lack a Diagnosis code on their records. I currently have a flag prior to billing claims, but I want an actual print up of the patients who lack a dx.
SELECT
a.lastname, a.firstname, a.id
FROM
patients a
LEFT OUTER JOIN ptcsudx b ON a.ptcsunum = b.ptcsunum
WHERE
a.flag = 0
AND a.dischargedate IS NULL
AND b.dxcode1 IS NULL
ORDER BY a.lastname, a.firstname, a.id
Deletions:
======Query Title ======
comments here appear in italics
paste your tested query here


Revision [423]

The oldest known version of this page was created on 2010-09-24 13:28:11 by SethKrieger [Cloned from NewQuery]
Valid XHTML 1.0 Transitional :: Valid CSS :: Powered by WikkaWiki