Guest User

Untitled

a guest
Oct 19th, 2017
65
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.96 KB | None | 0 0
  1. [ {
  2. "timestamp" : 1507320877294,
  3. "color" : "red",
  4. "balloon" : {
  5. "x" : 42,
  6. "y" : 312,
  7. "z" : 287,
  8. }
  9. } ]
  10.  
  11. [ {
  12. "timestamp" : 1607320877294,
  13. "color" : "yellow",
  14. "balloon" : {
  15. "x" : 42,
  16. "y" : 312,
  17. "z" : 287,
  18. }
  19. } ]
  20.  
  21. |--------------------------------------------------------------------
  22. | spotter_sensor_id | hour_collected | red_balloons| yellow_balloons|
  23. |--------------------------------------------------------------------
  24. | 992 | 17:00:00 | 5 | 5 |
  25. ---------------------------------------------------------------------
  26.  
  27. INSERT INTO table
  28. (spotter_sensor_id, hour_collected, red_balloons, yellow_balloons)
  29. VALUES
  30. ('992', '$hour_collected', '$red_balloons', '$yellow_balloons')
  31. ON DUPLICATE KEY UPDATE
  32. red_balloons = $red_balloons + VALUES(red_balloons),
  33. yellow_balloons = $yellow_balloons + VALUES(yellow_balloons);
Add Comment
Please, Sign In to add comment