The database is Oracle,. I want to change the type of a field. The name of this field happens to be a keyword. How should I modify it?

alter table tn modify CONTENT clob;
1.CONTENT is the keyword
2. Keep reminding me that the ORA-22858 data type change is invalid

Sep.03,2021

alter table tn modify "CONTENT" clob;

alter table tn modify column_name (this is the key field name) datatype (, which is the data type to be changed);
Note: in order to ensure integrity (data loss), it is best to back up the data;

  
Menu