Page 1 of 1

New patient report

Posted: Mon Dec 10, 2007 8:45 pm
by abelaguilar
Hello all:

Wondering how can I generate a report listing new patients to the office.

Thanks

Posted: Tue Dec 11, 2007 1:22 pm
by Jorgebon
This query is from the query examples page. You can modify it to get a report with the specific fields you would like and the dates you want:

SELECT * FROM PATIENT
WHERE DateFirstVisit >= '2005-10-01'
AND DateFirstVisit < '2005-11-01'


Jorge Bonilla, DMD

Posted: Tue Dec 11, 2007 3:12 pm
by abelaguilar
Thanks i'll try it.