Craig's answer and your resulting query in the comments share the same flaw: The table anwendung is at the right side of a LEFT JOIN, which contradicts your obvious intent. You care about anwendung.name and pick autor.entwickler at random. (Yes, random. I'll come back to that further down.)
It should be:
SELECT DISTINCT ON (1) an.name, au.entwickler
FROM anwendung an
LEFT JOIN autor au ON an.name = au.anwendung;
DISTINCT ON (1) is just a syntactical shorthand for DISTINCT ON (an.name). Positional parameters are allowed here.
If there are multiple developers (entwickler) for an app (anwendung) one developer is picked at random. You have to add an ORDER BY clause if you want the "first" (alphabetically according to your locale):
SELECT DISTINCT ON (1) an.name, au.entwickler
FROM anwendung an
LEFT JOIN autor au ON an.name = au.anwendung
ORDER BY 1, 2;
As @mdahlman already implied, the more canonical way would be
SELECT an.name, min(au.entwickler) AS entwickler
FROM autor au
LEFT JOIN anwendung an ON an.name = au.anwendung
GROUP BY an.name;
Or, better yet, clean up your data model, implement the n:m relationship between anwendung and autor properly, add surrogate primary keys as anwendung and autor are hardly unique, enforce relational integrity with foreign key constraints and adapt your resulting query:
The proper way
Demo uses temporary tables, so you can easily try this at home:
CREATE TEMP TABLE autor (
autor_id serial primary key -- surrogate primary key
,autor text);
INSERT INTO autor VALUES
(1, 'mike')
,(2, 'joe')
,(3, 'jane') -- worked on three apps
,(4, 'susi'); -- has no part in any apps (yet)
CREATE TEMP TABLE anwendung (
anwendung_id serial primary key -- surrogate primary key
,anwendung text);
INSERT INTO anwendung VALUES
(1, 'foo') -- has 3 authors linked to it
,(2, 'bar')
,(3, 'shark')
,(4, 'bait'); -- has no authors attached to it (yet).
CREATE TEMP TABLE autor_anwendung ( -- you might name this table "entwickler"
autor_id integer
REFERENCES autor (autor_id) ON UPDATE CASCADE ON DELETE CASCADE
,anwendung_id integer
REFERENCES anwendung (anwendung_id) ON UPDATE CASCADE ON DELETE CASCADE
,PRIMARY KEY (autor_id, anwendung_id)
);
INSERT INTO autor_anwendung VALUES
(1, 1)
,(2, 1)
,(3, 1)
,(3, 2)
,(3, 3);
Query retrieves all app names with all associated authors collected in a comma-separated string:
SELECT an.name, string_agg(au.autor, ', ') AS entwickler
FROM anwendung an
LEFT JOIN autor_anwendung USING (anwendung_id)
LEFT JOIN autor au USING (autor_id)
GROUP BY 1
ORDER BY 1;
Result:
name | entwickler
-------+-----------------
bait |
bar | jane
foo | mike, joe, jane
shark | jane
string_agg() requires PostgreSQL 9.0+. For older versions substitute:
array_to_string(array_agg(au.autor), ', ')