Guest User

Untitled

a guest
Jul 18th, 2018
79
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.90 KB | None | 0 0
  1. **Subscription Table**
  2. -------------------------------
  3. id actors_id user_id
  4. -------------------------------
  5. 1 5 1
  6. 2 7 2
  7. 3 12 96
  8. 4 18 54
  9.  
  10. **Actors Content**
  11. -------------------------------
  12. id contend_id actors_id
  13. -------------------------------
  14. 1 25 5
  15. 2 65 18
  16. 3 120 18
  17. 4 98 12
  18.  
  19. **Content Table**
  20. -------------------------------
  21. r_id title content_post
  22. -------------------------------
  23. 25 abvg xxxxxxxxx
  24. 65 djki fffffffff
  25. 98 sdrt rrrrrrrrr
  26. 120 fgty tttttttty
  27.  
  28. SELECT Content.*, (SELECT Actors.contend_id FROM Actors WHERE Actors.contend_id = Content.r_id) as views FROM Content,Actors WHERE Actors.actors_id IN (SELECT Subscription.actors_id FROM Subscription WHERE Subscription.user_id = 96)
Add Comment
Please, Sign In to add comment