Advertisement
Guest User

mysql

a guest
Oct 13th, 2014
236
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.70 KB | None | 0 0
  1. this is what i need
  2.  
  3. tbl_what_i_need
  4. trans_id +
  5. 1 |
  6. -> detail_id + item_id + item_name + item_prize
  7. 1 1 drinks 2
  8. 1 2 foods 3
  9. 2 |
  10. -> detail_id + item_id + item_name + item_prize
  11. 2 2 foods 3
  12.  
  13. here is my table
  14.  
  15. tbl_items
  16. --------------------------------
  17. item_id + item_name + item_prize
  18. 1 + drinks + 2
  19. 2 + foods + 3
  20. --------------------------------
  21.  
  22. tbl_details
  23. --------------------------------
  24. detail_id + item_id
  25. 1 + 1
  26. 1 + 2
  27. 2 + 2
  28.  
  29. tbl_transaction
  30. --------------------------------
  31. trans_id + detail_id +
  32. 1 + 1
  33. 1 + 1
  34. 2 + 2
  35. --------------------------------
  36.  
  37.  
  38. thanks
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement