Skip to content

Commit

Permalink
Merge pull request #28 from ni-ze/cloudP
Browse files Browse the repository at this point in the history
support left join
  • Loading branch information
ni-ze authored Aug 25, 2022
2 parents 5af8660 + 06bfd41 commit d514332
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 d514332

Please sign in to comment.