mirror of
https://github.com/MartinThoma/LaTeX-examples.git
synced 2025-04-28 23:37:57 +02:00
misc
This commit is contained in:
parent
29d5c11e84
commit
a430494180
7 changed files with 0 additions and 0 deletions
6
documents/musterloesung-db-klausur-b/d3d.sql
Normal file
6
documents/musterloesung-db-klausur-b/d3d.sql
Normal file
|
@ -0,0 +1,6 @@
|
|||
CREATE VIEW Beratungsanzahl AS (
|
||||
SELECT berater_id, count(DISTINCT Berater.berater_id) AS Anzahl
|
||||
FROM Berater
|
||||
FULL OUTER JOIN Kunden ON Berater.berater_id = Kunden.berater_id
|
||||
GROUP BY berater_id
|
||||
)
|
Loading…
Add table
Add a link
Reference in a new issue