Advertisement
Guest User

Untitled

a guest
Jul 26th, 2017
65
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.03 KB | None | 0 0
  1. parent: child1: child2:
  2. +-----------+----------+ +----------+------------+-------+ +----------+------------+--------+
  3. | parent_id | name | | child_id | date | color | | child_id | date | lenght |
  4. +-----------+----------+ +----------+------------+-------+ +----------+------------+--------+
  5. | 1 | Bob | | 1 | 2017-07-20 | red | | 2 | 2017-07-21 | 185 |
  6. | 2 | Peter | | 3 | 2017-07-24 | blue | +----------+------------+--------+
  7. | 3 | Alice | +----------+------------+-------+
  8. +-----------+----------+
  9.  
  10. combined desired result:
  11. +-----------+-------+----------+------------+-------+--------+
  12. | parent_id | name | child_id | date | color | lenght |
  13. | 1 | Bob | 1 | 2017-07-20 | red | NULL |
  14. | 2 | Peter | 2 | 2017-07-21 | NULL | 185 |
  15. | 3 | Alice | 3 | 2017-07-24 | blue | NULL |
  16. +-----------+-------+----------+------------+-------+--------+
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement