Advertisement
Guest User

Untitled

a guest
Mar 22nd, 2019
77
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.59 KB | None | 0 0
  1.  
  2. LOAD DATA LOCAL INFILE 'C:/Data/tmp/productSupplierFile.txt'
  3. REPLACE INTO TABLE ec_product_supplier
  4. FIELDS TERMINATED BY '\t' OPTIONALLY ENCLOSED BY '' ESCAPED BY '\\'
  5. LINES TERMINATED BY '\r\n'
  6. (
  7. n_product_supplier_id,
  8. n_supplier_id,
  9. n_list_price,
  10. n_sale_price,
  11. n_product_availability_id,
  12. b_on_web,
  13. n_sale_price_calculator_id,
  14. vch_area,
  15. n_currency_id,
  16. n_product_id,
  17. n_feed_id,
  18. n_price_priority,
  19. n_alternate_list_price,
  20. n_alternate_sale_price,
  21. n_alternate_sale_price_calculator_id,
  22. n_alternate_currency_id,
  23. n_cost_price
  24. )
  25. SET d_last_modified_date = NOW();
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement