Reputation: 382
How to truncate a specified column among all the columns in my table?
Upvotes: 3
Views: 40631
Reputation: 93694
Just use a update statement without a where condition
update
where
Update tablename set column ='' --or NULL
Upvotes: 17