opendentalsupport.com is an independent community resource. We are NOT affiliated with, endorsed by, or sponsored by Open Dental Software, Inc. Open Dental® is a registered trademark of Open Dental Software, Inc.

Hygiene Recare Overdue List with Phone Numbers

SQL Queries3 min read3/30/2026

If you are struggling to fill your hygiene schedule, you need a reliable way to identify patients who are past due for their cleaning. This open dental recall list with phone query pulls a clean, actionable list of active patients and their contact information directly from your database.

The Query

Copy and paste the following code into your User Query window. This query looks for patients marked as "Active" who have a recall due date on or before the date you specify.

SET @DueDate = '2026-03-30';

SELECT 
    p.LName, 
    p.FName, 
    p.HmPhone, 
    p.WirelessPhone, 
    p.WkPhone, 
    r.DateDue, 
    r.DatePrevious
FROM patient p
INNER JOIN recall r ON p.PatNum = r.PatNum
WHERE p.PatStatus = 0
AND r.DateDue <= @DueDate
AND r.DateDue > '1900-01-01'
ORDER BY r.DateDue ASC;

How to Run This Query

  1. In Open Dental, go to Reports in the Main Menu.
  2. Click User Query.
  3. Paste the query provided above into the large text box.
  4. Click Submit Query.
  5. The results will display in the grid below. You can click the "Export" button to save this list as a CSV file for Excel if you prefer to work with it there.

Understanding the Results

How to Customize

You can easily adjust the parameters of this report by changing the values in the first line of the query:

Variations

If you want to focus only on patients who have not been seen in a very long time, you can add a filter to exclude patients who have had an appointment recently.

To filter for patients who are overdue AND have an email address on file (so you can send a bulk email blast), add this line to the WHERE clause: AND p.Email != ''.

Skip the Query — Use DentalCanvas Instead

Don't want to write SQL? DentalCanvas connects to your Open Dental database and shows you this data automatically in a visual dashboard — no queries required.


This article is provided by opendentalsupport.com, an independent community resource. We are not affiliated with Open Dental Software, Inc.

Stop Writing SQL.

DentalCanvas connects directly to your Open Dental database and shows you production, collections, scheduling, and more — in a visual dashboard you can understand at a glance. No queries. No exports. Just answers.

Try DentalCanvas

Was this article helpful?

Related Articles

opendentalsupport.com is an independent community resource. We are NOT affiliated with, endorsed by, or sponsored by Open Dental Software, Inc. Open Dental® is a registered trademark of Open Dental Software, Inc.