Arunkumar Arjunan
Arunkumar Arjunan

Reputation: 382

How to truncate a column alone in oracle SQL?

How to truncate a specified column among all the columns in my table?

Upvotes: 3

Views: 40631

Answers (1)

Pரதீப்
Pரதீப்

Reputation: 93694

Just use a update statement without a where condition

Update tablename 
set column ='' --or NULL

Upvotes: 17

Related Questions