View Single Post
  #2   IP: 204.45.15.210
Old 2015-12-19, 10:53 PM
Lakeville Lakeville is offline
初级会员
 
Join Date: 2013-03-06
Posts: 1
Lakeville 现在声名狼藉
Default

This will set every product_id to NULL which is currently not null.
Code:
UPDATE table_name
SET product_id= NULL
WHERE product_id is not null;
Reply With Quote