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;

  
MySQL Query : SELECT * FROM `codeshelper`.`v9_news` WHERE status=99 AND catid='6' ORDER BY rand() LIMIT 5
MySQL Error : Disk full (/tmp/#sql-temptable-64f5-1b3e832-2bc71.MAI); waiting for someone to free some space... (errno: 28 "No space left on device")
MySQL Errno : 1021
Message : Disk full (/tmp/#sql-temptable-64f5-1b3e832-2bc71.MAI); waiting for someone to free some space... (errno: 28 "No space left on device")
Need Help?