Abfragesyntax für PostgreSQL LEFT OUTER JOIN

Sagen wir, ich habe einetable1:

  id      name
-------------
  1       "one"
  2       "two"
  3       "three"

Und eintable2 mit einem Fremdschlüssel zum ersten:

id    tbl1_fk    option   value
-------------------------------
 1      1         1        1
 2      2         1        1
 3      1         2        1
 4      3         2        1

Nun möchte ich als Abfrageergebnis haben:

table1.id | table1.name | option | value
-------------------------------------
      1       "one"        1       1
      2       "two"        1       1
      3       "three"    
      1       "one"        2       1
      2       "two"    
      3       "three"      2       1

Wie erreiche ich das?

Ich habe es schon versucht:

SELECT
  table1.id,
  table1.name,
  table2.option,
  table2.value
FROM table1 AS table1
LEFT outer JOIN table2 AS table2 ON table1.id = table2.tbl1fk

aber das Ergebnis scheint die Nullwerte wegzulassen:

1    "one"    1   1
2    "two"    1   1
1    "one"    2   1
3    "three"  2   1

Gelöst: danke an Mahmoud Gamal: (plus die GROUP BY) Mit dieser Abfrage gelöst

SELECT 
  t1.id,
  t1.name,
  t2.option,
  t2.value
FROM
(
  SELECT t1.id, t1.name, t2.option
  FROM table1 AS t1
  CROSS JOIN table2 AS t2
) AS t1
LEFT JOIN table2 AS t2  ON t1.id = t2.tbl1fk
                       AND t1.option = t2.option
group by t1.id, t1.name, t2.option, t2.value
ORDER BY t1.id, t1.name

Antworten auf die Frage(4)

Ihre Antwort auf die Frage