redesigdn docs

This commit is contained in:
colinislit
2025-12-27 13:17:00 +01:00
parent 33c6698870
commit c77f1eb554
27 changed files with 3741 additions and 3 deletions

View File

@@ -0,0 +1,10 @@
-- Check welke patiënten er in de database zitten
SELECT
id,
name_given,
name_family,
name_prefix,
birth_date
FROM patients
ORDER BY created_at DESC
LIMIT 20;