Guest User

Untitled

a guest
Feb 21st, 2018
85
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.61 KB | None | 0 0
  1. table users
  2. id_user name
  3. 1 A
  4. 2 B
  5. 3 C
  6. 4 D
  7. 5 E
  8.  
  9. table community
  10. id_follower id_followed
  11. 1 2
  12. 1 3
  13. 1 5
  14.  
  15. table posts
  16. id_post id_user_post post
  17. 1 2 hi
  18. 2 3 hello
  19. 3 5 hey you
  20. 4 4 come on
  21. 5 5 where are you
  22.  
  23. SELECT u.name as n, p.post as t
  24. FROM community as c
  25. LEFT JOIN users as u ON u.id_user=c.id_followed
  26. LEFT JOIN posts as p ON c.id_followed=p.id_user_post
  27. WHERE u.id_follower=1
Add Comment
Please, Sign In to add comment