Thread
:
I need to delete all data in a single field from 300 tables
View Single Post
#
2
IP: 204.45.15.210
2015-12-19, 10:53 PM
Lakeville
初级会员
Join Date: 2013-03-06
Posts: 1
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;
Lakeville
View Public Profile
Find all posts by Lakeville