記録を報告していない測定デバイスのリストと、最後の記録からの日数を表示するクエリを作成するのに助けが必要です。
テーブル構造は次のとおりです。
select d.deviceno, r.lastrecordingdate, --Here's where i need a table to act as a COUNT for --number of days the device has not logged.
from modules m
join devices d on m.deviceid = d.deviceid
join recordings r on m.recordingid = r.recordingid
--i really don't know what to write beyond this. I am drawin