bank docker

This commit is contained in:
2025-11-16 09:34:19 +01:00
parent 4f38a8793a
commit e55c60504e
7 changed files with 7029 additions and 270 deletions

9
banque/banque.4.bak Normal file
View File

@@ -0,0 +1,9 @@
select h.id, h.type, case h.type
when 'PERSON' then p.firstname || ' ' || p.lastname
when 'COMPANY' then c.name
when 'BANK' then b.name
end
from holder h
left join person p on p.id = h.id
left join company c on c.id = h.id
left join bank b on b.id = h.id