I have some problems with update query. My task is to change status in news rows of my data example:
id product_id import_id modified_at status
30470 30470 5 "2014-12-08 14:46:22" "NEW"
96091 30470 7 "2014-12-18 06:11:10" "CURRENT"
161203 30470 9 "2014-12-29 12:05:35" "CURRENT"
253973 30470 11 "2014-12-31 06:11:08" "CURRENT"
317167 30470 12 "2014-12-31 06:12:18" "CURRENT"
362304 30470 14 "2015-01-01 06:11:09" "CURRENT"
So in my data example I have to update row with id 362304 and set status "NEW". Of course I will have to do it for all of the products, but first I want to try with this one example.