Advertisement
Guest User

insert query

a guest
Dec 7th, 2019
197
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
MySQL 0.36 KB | None | 0 0
  1. INSERT INTO `{$this->table_name}`
  2. (
  3. `product_id`,
  4. `vendor_cod`,
  5. `recipient_id`,
  6. `price`,
  7. `quantity`,
  8. `size`,
  9. `provider_id`,
  10. `color`,
  11. `name`
  12. )
  13. VALUE (
  14. '{$this->product_id}',
  15. '{$this->vendor_cod}',
  16. '{$this->recipient_id}',
  17. '{$this->price}',
  18. '{$this->quantity}',
  19. '{$this->size}',
  20. '{$this->provider_id}',
  21. '{$this->color}',
  22. '{$this->name}'
  23. )
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement