Guest User

tpk

a guest
Jul 25th, 2012
549
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.25 KB | None | 0 0
  1. Customer Table
  2. id | room_id
  3. 1 | 2
  4. 2 | 2
  5. 3 | 1
  6. 4 | 0
  7. 5 | 2
  8.  
  9. Rooms Table
  10. id | head
  11. 1 | 1
  12. 2 | 4
  13. 3 | 2
  14. 4 | 3
  15.  
  16. Expected Result
  17.  
  18. room_id | occupied | total_head | remaining_head
  19. 2 | 3 | 4 | 1
  20. 3 | 0 | 2 | 2
  21. 4 | 0 | 3 | 3
Advertisement
Add Comment
Please, Sign In to add comment