Rename column named TYPE, LEVEL in sqlplus
问题 This needs to be done in sql plus. Hi, I'm struggling to rename two columns in my table. They are named "TYPE" and "LEVEL". This needs to be done in sql plus with no exception. The following does not work (works in sql developer tho): alter table client rename column level to clevel; alter table client rename column "level" to clevel; 回答1: LEVEL is an Oracle keyword , though not reserved. If you want to use it as an object name then you need to represent the name of an object with a quoted