Oracle FAQ | Your Portal to the Oracle Knowledge Grid |
![]() |
![]() |
Home -> Community -> Usenet -> c.d.o.server -> Re: Case sensitive Tablenames
> By default ALL identifiers are in UPPERCASE. You can use lowercase
> (you don't want that) by enclosing the identifier in "", like "lower
> case table name"
Yeah, this one is nice for example:
SQL> create table t (" " number);
Table created.
SQL> desc t;
Name Null? Type ---------------------------------------------------------- -------- ------- -- NUMBER
:)
Tanel. Received on Thu Sep 11 2003 - 15:29:41 CDT
![]() |
![]() |