Oracle database modifications field case

Build a database table, the table field colleagues to mess lowercase letters, triggering BO files and database field mapping with less problems.

修改方式:alter table tablename rename column "table_field" to TABLE_FIELD;

If you need to have a leader named field to lowercase, is modified as follows:

修改方式:alter table tablename rename column TABLE_FIELD to "table_field";

Guess you like

Origin blog.csdn.net/qq_25023237/article/details/88912875