is-coursework/report/data-model/sql/precedents/pr2-notificate-for-extend.sql

6 lines
244 B
SQL
Raw Permalink Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

-- Рассылки о скором истечении: домены, истекающие в указанное окно
SELECT d.id, d.fqdn, d.expires_at
FROM domain AS d
WHERE d.expires_at >= $1
AND d.expires_at < $2
ORDER BY d.expires_at;