Parcourir la source

add left join

Daniel Sheffield il y a 5 mois
Parent
commit
4570b10da7
1 fichiers modifiés avec 2 ajouts et 2 suppressions
  1. 2 2
      example.sql

+ 2 - 2
example.sql

@@ -1,6 +1,6 @@
 -- Insert a tag if it got missed
 --INSERT INTO tags_map (transaction_id, tag_id) VALUES(2247, 11);
 SELECT * FROM transactions t
-	JOIN tags_map ON (transaction_id = t.id)
-	JOIN tags tg ON (tag_id = tg.id)
+	LEFT JOIN tags_map ON (transaction_id = t.id)
+	LEFT JOIN tags tg ON (tag_id = tg.id)
 	WHERE transaction_id = 2247;