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.

Open Dental Overdue Recall Query

SQL Queries3 min read3/27/2026

If you are struggling to keep your hygiene schedule full, you need a reliable way to identify patients who have fallen through the cracks. This open dental overdue recall query allows you to instantly pull a list of active patients who are past their due date for a hygiene visit, helping your front desk team prioritize their outreach efforts.

The Query

Copy and paste the following code into your User Query window. This query looks for active patients whose recall date is earlier than the date you specify.

/* Set the date to find patients overdue as of this date */
SET @AsOfDate = '2026-03-27';

SELECT 
    p.LName, 
    p.FName, 
    p.HmPhone, 
    p.WirelessPhone, 
    p.Email, 
    r.DateDue,
    DATEDIFF(@AsOfDate, r.DateDue) AS DaysOverdue
FROM patient p
INNER JOIN recall r ON p.PatNum = r.PatNum
WHERE p.PatStatus = 0 
  AND r.DateDue < @AsOfDate
  AND r.DateDue > '2000-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.

Understanding the Results

How to Customize

You can easily adjust this query to fit your specific needs:

Variations

Only Patients Overdue by More Than 90 Days

If you want to focus on long-term overdue patients, add a HAVING clause to the end of the query:

...
ORDER BY r.DateDue ASC
HAVING DaysOverdue > 90;

Include Only Patients with Insurance

To prioritize patients who have active insurance benefits, add an INNER JOIN to the patplan table:

SELECT p.LName, p.FName, p.HmPhone, r.DateDue
FROM patient p
INNER JOIN recall r ON p.PatNum = r.PatNum
INNER JOIN patplan pp ON p.PatNum = pp.PatNum
WHERE p.PatStatus = 0 AND r.DateDue < @AsOfDate
GROUP BY p.PatNum;

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.