Advertisement
Guest User

Untitled

a guest
Dec 14th, 2018
138
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.07 KB | None | 0 0
  1. query ' INSERT INTO items (title, supplier, comment, price, wants, has, fulfilled, instock, image)
  2. VALUES (%s, %s, %s, %s, %s, %s, %s, %s, %s)
  3. ON DUPLICATE KEY UPDATE
  4. title=VALUES(title),
  5. supplier=VALUES(supplier),
  6. comment=VALUES(comment),
  7. price=VALUES(price),
  8. wants=VALUES(wants),
  9. has=VALUES(has),
  10. fulfilled=VALUES(fulfilled),
  11. instock=VALUES(instock),
  12. image=VALUES(image)'
  13. with 9 params [(
  14.  
  15. 'FPVRC Cheerson CX-10 Mini RC Quadcopter 2.4G 4CH 6 Axis Gyro Nano Drone with Headless Mode, 360 Degree Flips and LED Lights, Orange',
  16. 'Yuccasepal',
  17. "Teenage boys are the least likely to receive a toy this Christmas. Please don't forget to buy some AAA batteries if you can - they are on our list for you to select.",
  18. 12.78,
  19. 50,
  20. 22,
  21. 0.44,
  22. True,
  23. 'https://images-na.ssl-images-amazon.com/images/I/61sJOAP9NaL._SS135_.jpg')]
  24.  
  25. failed with 1136 (21S01): Column count doesn't match value count at row 1
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement