[Solved] SQL Replace Command needed [closed]


This is a very basic update command. I would recommend reviewing this tutorial : http://www.w3schools.com/sql/

I will give you the command for now though :

UPDATE shop SET product_price = 3.2 WHERE product_country = 'USA';

This is assuming product_price is a decimal type and product_country is a varchar or some other type of text based fields.

1

solved SQL Replace Command needed [closed]