mirror of
https://github.com/ulitsaRaskolnikova/is-coursework.git
synced 2026-09-14 00:25:36 +05:00
5 lines
151 B
SQL
5 lines
151 B
SQL
-- Список DNS-записей домена
|
|
SELECT id, type, name, value, ttl, updated_at
|
|
FROM dns_record
|
|
WHERE domain_id = $1
|
|
ORDER BY created_at; |