Skip to content

Commit

Permalink
support left join
Browse files Browse the repository at this point in the history
  • Loading branch information
ni-ze committed Aug 25, 2022
1 parent 115fa41 commit 06bfd41
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 1 deletion.
File renamed without changes.
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ SELECT t.id AS ticket_id,
p.name AS perform_name,
p.odeum_id AS odeum_id
FROM ticket AS t
JOIN perform AS p ON t.perform_id = p.id;
LEFT JOIN perform AS p ON t.perform_id = p.id;


INSERT INTO task_sink
Expand Down

0 comments on commit 06bfd41

Please sign in to comment.