Answer the question
In order to leave comments, you need to log in
Table and field names in Oracle SQL?
How it is accepted to write names of tables and fields in oracle? Small C using underscore or PascalCase?
Answer the question
In order to leave comments, you need to log in
Tables and fields in ORACLE can be accessed using any case. For example expressions
select mycol from my_table;
select MYCOL from MY_TABLE;
select Mycol from My_table;
create table my_table (mycol char(10));
, good, but create table "My_Table" ("Mycol" char(10));
- bad, it's better not to do it.
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question